mirror of
https://github.com/pygos/build.git
synced 2024-11-05 19:47:09 +01:00
21 lines
331 B
Text
Executable file
21 lines
331 B
Text
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"
|
|
touch "$PKGDEPLOYDIR/$PKGNAME.desc"
|
|
}
|