diff options
author | Jose V Beneyto <sepen@crux.nu> | 2014-08-05 16:56:01 +0200 |
---|---|---|
committer | Jose V Beneyto <sepen@crux.nu> | 2014-08-05 17:39:14 +0200 |
commit | b37bab0b376e86a93a03e954b1538b4430c00293 (patch) | |
tree | d65a1942b9b3df95d8ea7382ece943c819167839 /ninja | |
parent | 369affbc44e0f410f53af9f63223ff4554c1bdca (diff) | |
download | opt-b37bab0b376e86a93a03e954b1538b4430c00293.tar.gz opt-b37bab0b376e86a93a03e954b1538b4430c00293.tar.xz |
ninja: initial import (required for chromium)
Diffstat (limited to 'ninja')
-rw-r--r-- | ninja/.footprint | 3 | ||||
-rw-r--r-- | ninja/.md5sum | 1 | ||||
-rw-r--r-- | ninja/Pkgfile | 16 |
3 files changed, 20 insertions, 0 deletions
diff --git a/ninja/.footprint b/ninja/.footprint new file mode 100644 index 000000000..307eed5d2 --- /dev/null +++ b/ninja/.footprint @@ -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 diff --git a/ninja/.md5sum b/ninja/.md5sum new file mode 100644 index 000000000..b9b73624b --- /dev/null +++ b/ninja/.md5sum @@ -0,0 +1 @@ +59f4f1cf5d9bb0d7877a6d5a5afd770a v1.5.1.tar.gz diff --git a/ninja/Pkgfile b/ninja/Pkgfile new file mode 100644 index 000000000..cdfb19347 --- /dev/null +++ b/ninja/Pkgfile @@ -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 +} |