serenity/Ports/openssl/package.sh

23 lines
800 B
Bash
Raw Normal View History

2021-01-22 16:44:05 +00:00
#!/usr/bin/env -S bash ../.port_include.sh
2019-11-15 01:57:06 +00:00
port=openssl
2021-07-29 22:04:32 +00:00
branch='1.1.1'
2022-07-07 14:26:14 +00:00
version="${branch}q"
2019-11-15 01:57:06 +00:00
useconfigure=true
configscript=Configure
2022-07-07 14:26:14 +00:00
files="https://www.openssl.org/source/openssl-${version}.tar.gz openssl-${version}.tar.gz d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51bf8c8fd10ca"
auth_type=sha256
depends=("zlib")
configopts=("--prefix=/usr/local" "-DOPENSSL_SYS_SERENITY=1" "-DOPENSSL_USE_IPV6=0" "zlib" "threads" "no-tests" "no-asm" "serenity-generic")
2019-11-15 01:57:06 +00:00
configure() {
export LDFLAGS="-L${SERENITY_INSTALL_ROOT}/usr/local/lib"
run ./"$configscript" "${configopts[@]}"
2019-11-15 01:57:06 +00:00
}
2021-07-29 22:04:32 +00:00
install() {
# The default "install" also installs docs, which we don't want.
run make DESTDIR=$DESTDIR install_sw "${installopts[@]}"
run make DESTDIR=$DESTDIR install_ssldirs "${installopts[@]}"
2021-07-29 22:04:32 +00:00
}