35 lines
1,010 B
Text
35 lines
1,010 B
Text
# Template file for 'ninja'
|
|
pkgname=ninja
|
|
version=1.5.3
|
|
revision=1
|
|
hostmakedepends="python asciidoc git"
|
|
short_desc="Small build system with a focus on speed"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="Apache-2.0"
|
|
homepage="http://martine.github.io/ninja/"
|
|
|
|
do_fetch() {
|
|
git clone -b v${version} git://github.com/martine/ninja ${pkgname}-${version}
|
|
}
|
|
|
|
do_configure() {
|
|
# Skip rebuild with bootstrapped ninja until build phase:
|
|
sed -e "s|subprocess.check_call('./ninja', shell=True)|pass|" -i configure.py
|
|
python2 configure.py --bootstrap
|
|
}
|
|
|
|
do_build() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
HOST_CXXFLAGS="-O2 -fstack-protector-strong"
|
|
else
|
|
HOST_CXXFLAGS="${CXXFLAGS}"
|
|
fi
|
|
CXXFLAGS="$HOST_CXXFLAGS" python2 configure.py
|
|
asciidoc doc/manual.asciidoc
|
|
}
|
|
do_install() {
|
|
vinstall ninja 755 usr/bin
|
|
vinstall doc/manual.html 644 usr/share/doc/html/ninja
|
|
vinstall misc/bash-completion 644 usr/share/bash-completion/completions ninja
|
|
vinstall misc/zsh-completion 644 usr/share/zsh/site-functions _ninja
|
|
}
|