You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
791 B
30 lines
791 B
TERMUX_PKG_HOMEPAGE=https://ninja-build.org
|
|
TERMUX_PKG_DESCRIPTION="A small build system with a focus on speed"
|
|
TERMUX_PKG_LICENSE="Apache-2.0"
|
|
TERMUX_PKG_VERSION=1.9.0
|
|
TERMUX_PKG_REVISION=3
|
|
TERMUX_PKG_SRCURL=https://github.com/ninja-build/ninja/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=5d7ec75828f8d3fd1a0c2f31b5b0cea780cdfe1031359228c428c1a48bfcd5b9
|
|
TERMUX_PKG_DEPENDS="libc++, libandroid-spawn"
|
|
|
|
termux_step_pre_configure() {
|
|
CXXFLAGS+=" $CPPFLAGS"
|
|
LDFLAGS+=" -landroid-spawn"
|
|
}
|
|
|
|
termux_step_configure() {
|
|
$TERMUX_PKG_SRCDIR/configure.py
|
|
}
|
|
|
|
termux_step_make() {
|
|
if $TERMUX_ON_DEVICE_BUILD; then
|
|
$TERMUX_PKG_SRCDIR/configure.py --bootstrap
|
|
else
|
|
termux_setup_ninja
|
|
ninja -j $TERMUX_MAKE_PROCESSES
|
|
fi
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
cp ninja $TERMUX_PREFIX/bin
|
|
}
|
|
|