1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-07-03 00:10:12 +02:00
build/tcpkg/file/build
David Oberhollenzer dd394b0970 Add file package
The file utility needs a version of itself for cross compiling,
so we also have to add it to the toolchain.

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-02-09 00:41:59 +01:00

21 lines
269 B
Plaintext
Executable file

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
}