mirror of
https://github.com/pygos/build.git
synced 2024-11-26 04:40:41 +01:00
21 lines
269 B
Text
21 lines
269 B
Text
|
source "$SCRIPTDIR/pkg/file/build"
|
||
|
DEPENDS=""
|
||
|
|
||
|
prepare() {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
build() {
|
||
|
local SOURCE="$1"
|
||
|
local BUILD="$2"
|
||
|
|
||
|
$SOURCE/configure --prefix="$TCDIR" --disable-static \
|
||
|
--build="$HOSTTUPLE" --host="$HOSTTUPLE"
|
||
|
|
||
|
make -j $NUMJOBS
|
||
|
}
|
||
|
|
||
|
deploy() {
|
||
|
make install
|
||
|
}
|