Skip to content
Snippets Groups Projects
Commit abe1dc59 authored by J0WI's avatar J0WI Committed by Natanael Copa
Browse files

testing/openssl: update pkgdesc and disable various

explicitly disable
- des
- idea
- psk
- rc4
- rc5
- seed
- zlib

Those are either disabled in debian or removed in libressl.
parent 57ba2ae2
No related branches found
No related tags found
No related merge requests found
......@@ -2,14 +2,13 @@
pkgname=openssl
pkgver=1.1.1
_abiver=${pkgver%.*}
pkgrel=2
pkgdesc="Toolkit for SSL v2/v3 and TLS v1"
pkgrel=3
pkgdesc="Toolkit for Transport Layer Security (TLS)"
url="https://www.openssl.org"
arch="all"
license="OpenSSL"
depends_dev="zlib-dev"
makedepends_build="perl"
makedepends_host="zlib-dev linux-headers"
makedepends_host="linux-headers"
makedepends="$makedepends_host $makedepends_build"
subpackages="$pkgname-dbg $pkgname-dev $pkgname-doc libcrypto$_abiver:_libcrypto libssl$_abiver:_libssl"
source="https://www.openssl.org/source/openssl-$pkgver.tar.gz
......@@ -48,8 +47,10 @@ build() {
perl ./Configure $_target --prefix=/usr \
--libdir=lib \
--openssldir=/etc/ssl \
shared zlib $_optflags \
no-async no-mdc2 no-ec2m no-sm2 no-sm4 no-ssl2 no-ssl3 no-weak-ssl-ciphers \
shared no-zlib $_optflags \
no-async no-comp no-des no-idea no-mdc2 no-rc4 no-rc5 no-ec2m \
no-sm2 no-sm4 no-ssl2 no-ssl3 no-seed no-psk \
no-weak-ssl-ciphers \
$CPPFLAGS $CFLAGS $LDFLAGS -Wa,--noexecstack
make
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment