mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +01:00
6746f5c033
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
34 lines
No EOL
646 B
Text
34 lines
No EOL
646 B
Text
VERSION="5.2.4"
|
|
SRCDIR="xz-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://tukaani.org/xz/"
|
|
SHA256SUM="9717ae363760dedf573dad241420c5fea86256b65bc21d2cf71b2b12f0544f4b"
|
|
DEPENDS="toolchain"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
$1/configure --prefix="" --host="$TARGET" --disable-static
|
|
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
local DEVDEPLOY="$3"
|
|
|
|
make DESTDIR="$DEPLOY" install-strip
|
|
|
|
rm -r "$DEPLOY/share"
|
|
|
|
split_dev_deploy "$DEPLOY" "$DEVDEPLOY"
|
|
}
|
|
|
|
check_update() {
|
|
curl --silent -L "$URL" | grep -o "xz-[0-9.]*tar.xz" | \
|
|
sed 's/xz-//g' | sed 's/.tar.xz//g' | \
|
|
verson_find_greatest "$VERSION"
|
|
} |