mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +01:00
2c394f4246
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
27 lines
450 B
Text
Executable file
27 lines
450 B
Text
Executable file
VERSION="0.8"
|
|
SRCDIR="init-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="http://infraroot.at/pygos"
|
|
SHA256SUM="1adfe2534d7657c9f7dcc12ea6acf3780b6f009bfb3f32c8c78e893431c6a2db"
|
|
DEPENDS="init-scripts usyslog"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
run_configure "$1"
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
|
|
make DESTDIR="$DEPLOY" install
|
|
cp "$SCRIPTDIR/pkg/$PKGNAME/rootfs_files.txt" "$DEPLOY"
|
|
}
|
|
|
|
check_update() {
|
|
return
|
|
}
|