smlinux/base/openssl/openssl.SMBuild

38 lines
No EOL
906 B
Text
Executable file

app=openssl
version=1.1.1q
build=1sml
homepage="https://www.openssl.org/"
download="https://www.openssl.org/source/openssl-$version.tar.gz"
desc="Commercial-grade, full-featured crypto library from OpenSSL Project that implements TLS and SSLv3"
requires="perl"
build() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
if [ "$arch" = "aarch64" ]; then
cpuflag="linux-aarch64"
elif [ "$arch" = "x86_64" ]; then
cpuflag="linux-x86_64"
fi
./Configure "$cpuflag" \
--prefix="/" \
--openssldir=/etc/ssl \
shared enable-md2 no-weak-ssl-ciphers
make
make install LIBDIR=lib DESTDIR=$pkg
cp LICENSE $pkgdocs/
mkfinalpkg
}
sha512sums="
ee8bb2a3ba3e5e45c3c3b18f1a222e87e79de2aa97ce0f064cd8a602bae3d9b45bddacef1da7850553f606987593681be5cb62d29db460c1242e83615261a53b openssl-1.1.1q.tar.lz
"