mirror of
https://github.com/pygos/build.git
synced 2024-11-13 06:57:11 +01:00
30 lines
560 B
Text
Executable file
30 lines
560 B
Text
Executable file
VERSION="0.4.1"
|
|
SRCDIR="pkgtool-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://infraroot.at/pygos"
|
|
SHA256SUM="78580ab27baafc41faa69c959d8d39de6cb6299e8133a7655accfef15d423a5b"
|
|
DEPENDS=""
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
$1/configure --prefix="$TCDIR" --disable-static \
|
|
--build="$HOSTTUPLE" --host="$HOSTTUPLE" \
|
|
--with-repo-dir="$REPODIR" \
|
|
--with-install-root="$TCDIR/$TARGET"
|
|
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
make install
|
|
|
|
touch "$PKGDEPLOYDIR/$PKGNAME.files"
|
|
touch "$PKGDEPLOYDIR/$PKGNAME.desc"
|
|
}
|
|
|
|
check_update() {
|
|
return
|
|
}
|