mirror of
https://github.com/pygos/build.git
synced 2024-11-17 00:47:10 +01:00
30 lines
479 B
Text
Executable file
30 lines
479 B
Text
Executable file
VERSION="0.1"
|
|
SRCDIR="pkgtool-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="http://infraroot.at/pygos"
|
|
SHA256SUM="475ad195886e68e55d71164147b9d7f9a83952a7b2be5836dfd438d6edbb9340"
|
|
DEPENDS=""
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
$1/configure --prefix="$TCDIR" --disable-static \
|
|
--build="$HOSTTUPLE" --host="$HOSTTUPLE"
|
|
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
make install
|
|
|
|
touch "$2/$PKGNAME.files"
|
|
cat > "$2/$PKGNAME.desc" <<_EOF
|
|
name $PKGNAME
|
|
_EOF
|
|
}
|
|
|
|
check_update() {
|
|
return
|
|
}
|