void-packages/srcpkgs/ninja/template
2014-11-28 19:30:08 +00:00

38 lines
1.1 KiB
Plaintext

# 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"
update_site="https://github.com/martine/ninja/tags"
update_pattern='archive/v\K[\d.]+(?=\.tar\.gz)'
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
}