2019-07-17 13:50:03 +02:00
|
|
|
VERSION="0.4.2"
|
2019-01-30 14:18:25 +01:00
|
|
|
SRCDIR="pkgtool-${VERSION}"
|
|
|
|
TARBALL="${SRCDIR}.tar.xz"
|
2019-03-31 13:43:00 +02:00
|
|
|
URL="https://infraroot.at/pygos"
|
2019-07-17 13:50:03 +02:00
|
|
|
SHA256SUM="845847e139bbb6e15ada8946032d1c114a8dde52cacb3d81f1b8370edab7ed9d"
|
2019-01-30 14:18:25 +01:00
|
|
|
DEPENDS=""
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
$1/configure --prefix="$TCDIR" --disable-static \
|
2019-06-10 15:16:41 +02:00
|
|
|
--build="$HOSTTUPLE" --host="$HOSTTUPLE" \
|
|
|
|
--with-repo-dir="$REPODIR" \
|
|
|
|
--with-install-root="$TCDIR/$TARGET"
|
2019-01-30 14:18:25 +01:00
|
|
|
|
|
|
|
make -j $NUMJOBS
|
|
|
|
}
|
|
|
|
|
|
|
|
deploy() {
|
|
|
|
make install
|
2019-02-08 00:24:54 +01:00
|
|
|
|
2019-03-06 10:03:12 +01:00
|
|
|
touch "$PKGDEPLOYDIR/$PKGNAME.files"
|
2019-03-09 14:22:55 +01:00
|
|
|
touch "$PKGDEPLOYDIR/$PKGNAME.desc"
|
2019-01-30 14:18:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
check_update() {
|
|
|
|
return
|
|
|
|
}
|