1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-11-23 03:29:46 +01:00
build/pkg/tc-squashfs/build
David Oberhollenzer d83b9ea383 Bump squashfs-tools-ng version
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-07-17 18:15:25 +02:00

28 lines
495 B
Text
Executable file

VERSION="0.4.2"
SRCDIR="squashfs-tools-ng-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="https://infraroot.at/pub/squashfs"
SHA256SUM="762badcf85010607a56efac1546b96a69685df33bb7d126bdae617feded835fc"
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() {
return
}