mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
19 lines
346 B
Text
Executable file
19 lines
346 B
Text
Executable file
DEPENDS="bbstatic"
|
|
|
|
build() {
|
|
return
|
|
}
|
|
|
|
deploy() {
|
|
cp $SCRIPTDIR/pkg/initrd/*.{desc,files} "$PKGDEPLOYDIR"
|
|
|
|
pkg install -R "$REPODIR" -r "$TCDIR/$TARGET" -l pkg $DEPENDS \
|
|
>> "$PKGDEPLOYDIR/initrd.files"
|
|
|
|
echo "file init 0775 0 0 $SCRIPTDIR/pkg/$PKGNAME/initrd.skel" \
|
|
>> "$PKGDEPLOYDIR/initrd.files"
|
|
}
|
|
|
|
check_update() {
|
|
return
|
|
}
|