ninja: initial import (required for chromium)

This commit is contained in:
Jose V Beneyto 2014-08-05 16:56:01 +02:00
parent 369affbc44
commit b37bab0b37
3 changed files with 20 additions and 0 deletions

3
ninja/.footprint Normal file
View File

@ -0,0 +1,3 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/ninja

1
ninja/.md5sum Normal file
View File

@ -0,0 +1 @@
59f4f1cf5d9bb0d7877a6d5a5afd770a v1.5.1.tar.gz

16
ninja/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: Small build system with a focus on speed
# URL: http://martine.github.io/ninja/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
# Depends on: python
name=ninja
version=1.5.1
release=1
source=(https://github.com/martine/$name/archive/v$version.tar.gz)
build() {
cd $name-$version
./bootstrap.py --verbose
install -D -m 0755 $name $PKG/usr/bin/$name
}