mirror of
https://github.com/pygos/build.git
synced 2024-11-14 23:47:11 +01:00
28 lines
544 B
Text
Executable file
28 lines
544 B
Text
Executable file
VERSION="0.6.1"
|
|
SRCDIR="squashfs-tools-ng-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://infraroot.at/pub/squashfs"
|
|
SHA256SUM="aba8eccd4c0735ef7019d84a94166a866f11054fc713c4ba0fb919f1569dd7e6"
|
|
DEPENDS=""
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
$1/configure --prefix="$TCDIR" --disable-static \
|
|
--build="$HOSTTUPLE" --host="$HOSTTUPLE"
|
|
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
make install
|
|
|
|
touch "$PKGDEPLOYDIR/$PKGNAME.files"
|
|
touch "$PKGDEPLOYDIR/$PKGNAME.desc"
|
|
}
|
|
|
|
check_update() {
|
|
check_update_simple "$URL" "squashfs-tools-ng" "tar.xz"
|
|
}
|