1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-21 04:56:12 +02:00
build/pkg/init/build
David Oberhollenzer e0de98bf7d Bump init version
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-29 21:03:09 +01:00

25 lines
409 B
Plaintext
Executable file

VERSION="0.10"
SRCDIR="init-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="http://infraroot.at/pygos"
SHA256SUM="93c4368d182b41acbe5173a5094579760bf0d050f15e36fd06c6f762694fc241"
DEPENDS="toolchain"
prepare() {
return
}
build() {
run_configure "$1"
make -j $NUMJOBS
}
deploy() {
make DESTDIR="$PKGDEPLOYDIR" install
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
}
check_update() {
return
}