mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
30 lines
560 B
Text
Executable file
30 lines
560 B
Text
Executable file
VERSION="0.4.2"
|
|
SRCDIR="pkgtool-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://infraroot.at/pygos"
|
|
SHA256SUM="845847e139bbb6e15ada8946032d1c114a8dde52cacb3d81f1b8370edab7ed9d"
|
|
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
|
|
}
|