mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +01:00
b1bdce20a9
Crunch project websites and try to find the latest version for each package without having to do the work manually. Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
42 lines
No EOL
1,002 B
Text
Executable file
42 lines
No EOL
1,002 B
Text
Executable file
VERSION="1.1.0h"
|
|
SRCDIR="openssl-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.gz"
|
|
URL="https://www.openssl.org/source"
|
|
SHA256SUM="5835626cde9e99656585fc7aaa2302a73a7e1340bf8c14fd635a62c66802a517"
|
|
DEPENDS="zlib"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
$1/Configure --prefix=/ --cross-compile-prefix="${TARGET}-" \
|
|
--openssldir=/etc/ssl --libdir=/lib \
|
|
-DOPENSSL_NO_HEARTBEATS \
|
|
threads shared zlib-dynamic no-async $OPENSSL_TARGET
|
|
|
|
make -j 1
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
local DEVDEPLOY="$3"
|
|
|
|
make DESTDIR="$DEPLOY" install
|
|
|
|
rm "$DEPLOY/bin/c_rehash"
|
|
rm -r "$DEPLOY/etc/ssl/misc" "$DEPLOY/share"
|
|
|
|
split_dev_deploy "$DEPLOY" "$DEVDEPLOY"
|
|
strip_files ${DEPLOY}/bin/* ${DEPLOY}/lib/*.so*
|
|
}
|
|
|
|
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"
|
|
} |