1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-03 10:48:43 +02:00
build/pkg/tc-file/build
David Oberhollenzer 8fa44569d8 cleanup: remove deploy directory argument from package command
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-06 10:03:12 +01:00

24 lines
357 B
Plaintext
Executable file

source "$SCRIPTDIR/pkg/file/build"
DEPENDS="tc-pkgtool"
SUBPKG="tc-file"
prepare() {
return
}
build() {
$1/configure --prefix="$TCDIR" --disable-static \
--build="$HOSTTUPLE" --host="$HOSTTUPLE"
make -j $NUMJOBS
}
deploy() {
make install
touch "$PKGDEPLOYDIR/$PKGNAME.files"
cat > "$PKGDEPLOYDIR/$PKGNAME.desc" <<_EOF
name $PKGNAME
_EOF
}