smlinux/base/openssl/openssl.SMBuild

38 lines
894 B
Text
Executable file

app=openssl
version=1.1.1p
build=1sml
homepage='https://www.openssl.org/'
download='https://www.openssl.org/source/openssl-1.1.1o.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 DESTDIR=$pkg
cp LICENSE $pkgdocs/
mkfinalpkg
}
sha512sums="
203470b1cd37bdbfabfec5ef37fc97c991d9943f070c988316f6396b09dae7cea16ac884bd8646dbf7dd1ed40ebde6bdfa5700beee2d714d07c97cc70b4e48d9 openssl-1.1.1p.tar.gz
"