2019-05-03 17:12:33 +02:00
|
|
|
VERSION="0.4.1"
|
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-05-03 17:12:33 +02:00
|
|
|
SHA256SUM="78580ab27baafc41faa69c959d8d39de6cb6299e8133a7655accfef15d423a5b"
|
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
|
|
|
|
}
|