blob: cdfb19347d6cbfe8b6ad50cf60d324573e2afb04 (
plain)
1 # Description: Small build system with a focus on speed
2 # URL: http://martine.github.io/ninja/
3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
4 # Packager: Jose V Beneyto, sepen at crux dot nu
5 # Depends on: python
6
7 name=ninja
8 version=1.5.1
9 release=1
10 source=(https://github.com/martine/$name/archive/v$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 ./bootstrap.py --verbose
15 install -D -m 0755 $name $PKG/usr/bin/$name
16 }
|