1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-02 18:28:44 +02:00
build/pkg/xz/build

34 lines
646 B
Plaintext
Raw Normal View History

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"
}