1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-17 03:06:12 +02:00
build/pkg/openssl/build
David Oberhollenzer c2e3faf540 Bump OpenSSL version
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-09-18 14:07:02 +02:00

61 lines
1.4 KiB
Plaintext
Executable file

VERSION="1.1.1d"
SRCDIR="openssl-${VERSION}"
TARBALL="${SRCDIR}.tar.gz"
URL="https://www.openssl.org/source"
SHA256SUM="1e3a91bc1f9dfce01af26026f856e064eab4c8ee0a8f457b5ae30b40b8b711f2"
DEPENDS="zlib-dev toolchain"
SUBPKG="openssl openssl-dev"
prepare() {
return
}
build() {
local OPENSSL_TARGET=""
local cflags="-O2 -Os"
local ldflags=""
if [ "x$TC_HARDENING" = "xyes" ]; then
cflags="$cflags -fstack-protector-all"
ldflags="$ldflags -z noexecstack -z relro -z now"
fi
case "$TARGET" in
i*86-*)
OPENSSL_TARGET="linux-generic32 386"
;;
x86_64-*)
OPENSSL_TARGET="linux-x86_64"
;;
arm-*)
OPENSSL_TARGET="linux-generic32"
;;
*)
echo "don't know how to map $TARGET to OpenSSL arch"
exit 1
;;
esac
$1/Configure --prefix=/ --cross-compile-prefix="${TARGET}-" \
--openssldir=/etc/ssl --libdir=/lib \
CFLAGS="-DOPENSSL_NO_HEARTBEATS $cflags" \
LDFLAGS="$ldflags" \
threads shared zlib-dynamic no-async $OPENSSL_TARGET
make -j 1
}
deploy() {
make DESTDIR="$PKGDEPLOYDIR" install
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
}
check_update() {
local version=$(echo $VERSION | sed 's/\([[:lower:]]\)/.\1/g')
curl --silent -L "$URL" | grep -o ">openssl-[0-9a-z.]*tar.gz<" | \
sed 's/>openssl-//g' | sed 's/.tar.gz<//g' | \
sed 's/\([[:lower:]]\)/.\1/g' | \
verson_find_greatest "$version"
}