mirror of
https://github.com/pygos/build.git
synced 2024-11-04 19:27:09 +01:00
David Oberhollenzer
d2432c1d1e
- rewrite the rootfs_files.txt listings to the format used by pkg - create package files from each package - use "pkg install" to manage installation of packages and dependencies into the rootfs and initrd staging dirs Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
27 lines
438 B
Text
Executable file
27 lines
438 B
Text
Executable file
VERSION="0.1"
|
|
SRCDIR="usyslog-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="http://infraroot.at/pygos"
|
|
SHA256SUM="74451c13d62cf3a55ca2c61c9d1c0f4b3bd6c485b8012be6c3565315b887237c"
|
|
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/*.{files,desc} "$DEPLOY"
|
|
}
|
|
|
|
check_update() {
|
|
return
|
|
}
|