mirror of
https://github.com/pygos/build.git
synced 2024-11-23 03:29:46 +01:00
28 lines
476 B
Text
Executable file
28 lines
476 B
Text
Executable file
VERSION="0.3"
|
|
SRCDIR="pkgtool-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://infraroot.at/pygos"
|
|
SHA256SUM="290fa9e1dca0cb8fbeb6e3d73366722579b81f7f02ae4e68efe251d522e7875f"
|
|
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
|
|
}
|