mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
52427236e7
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
27 lines
440 B
Text
Executable file
27 lines
440 B
Text
Executable file
VERSION="0.1"
|
|
SRCDIR="gcron-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="http://infraroot.at/pygos"
|
|
SHA256SUM="c3a184b2bbc64b187797c335256d277cd8c0a871e09eef5d90161c4ad8267714"
|
|
DEPENDS="toolchain"
|
|
|
|
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
|
|
}
|