mirror of
https://github.com/pygos/build.git
synced 2024-11-14 23:47:11 +01:00
21 lines
436 B
Text
21 lines
436 B
Text
VERSION="5.2.5"
|
|
SRCDIR="xz-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://tukaani.org/xz/"
|
|
SHA256SUM="3e1e518ffc912f86608a8cb35e4bd41ad1aec210df2a47aaa1f95e7f5576ef56"
|
|
DEPENDS="toolchain"
|
|
SUBPKG="xz xz-dev"
|
|
|
|
build() {
|
|
run_configure "$1"
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
make DESTDIR="$PKGDEPLOYDIR" install
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
|
}
|
|
|
|
check_update() {
|
|
check_update_simple "$URL" "xz" "tar.xz"
|
|
}
|