mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +01:00
28 lines
493 B
Text
Executable file
28 lines
493 B
Text
Executable file
VERSION="0.4"
|
|
SRCDIR="squashfs-tools-ng-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://infraroot.at/pub/squashfs"
|
|
SHA256SUM="5b08cfe5a60d4bd5858545785cca4ff5d469b4d358cead2de16e7b9068d8c50f"
|
|
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
|
|
}
|