smlinux/base/openssl/openssl.SMBuild
PktSurf e94a3391ea Upgraded base/gpgme to 1.23.2
Enabled linking base/libpcap against libusb and libnl
Added additional build options in base/libvpx and base/xkeyboard-config
Disabled native language support in base/neon
Removed vintage code from base/openssl,pkgtools, fixed code in base/pkgtools/installpkg
Added spirv-headers, glslang-vulkan-sdk and libva to xorg
Upgraded xorg/libpciaccess to 0.18.1
Added code to move stuff in /usr and elf binaries in /bin in several build files in base section
2024-10-19 07:47:26 +05:30

41 lines
942 B
Text
Executable file

# Maintainer: PktSurf <smlinux@pktsurf.in>
app=openssl
version=1.1.1t
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 1.x protocol"
requires="perl"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
cpuflag=linux-x86_64
./Configure $cpuflag \
--prefix=/usr \
--openssldir=/etc/ssl \
shared enable-md2 no-weak-ssl-ciphers
make
make install_sw install_man_docs DESTDIR=$pkg
cp LICENSE $pkgdocs/
mkdir -p $pkg/bin
mv $pkg/usr/bin/* $pkg/bin/
rmdir $pkg/usr/bin
mkfinalpkg
}
sha512sums="
f89af9fa565f77bc1d94b76e87b9ffa0d7e54f6f2c10363b428215ba0365b927ff2a6cd4dab39858b233c7dff02091b6b3643d23f4443299f72facab48d0ec2e openssl-1.1.1t.tar.lz
"