2016-04-29 20:21:28 +02:00
|
|
|
# Description: Small build system with a focus on speed
|
2016-02-24 01:27:23 +01:00
|
|
|
# URL: http://martine.github.io/ninja/
|
2016-04-29 20:21:28 +02:00
|
|
|
# Packager: milisarge
|
|
|
|
# Depends on: python
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
|
|
name=ninja
|
2016-04-29 20:21:28 +02:00
|
|
|
version=1.6.0
|
2016-02-24 01:27:23 +01:00
|
|
|
release=1
|
2016-04-29 20:21:28 +02:00
|
|
|
source=(https://github.com/martine/$name/archive/v$version.tar.gz)
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
|
|
build() {
|
2016-04-29 20:21:28 +02:00
|
|
|
cd $name-$version
|
|
|
|
./configure.py --bootstrap
|
|
|
|
install -D -m 0755 $name $PKG/usr/bin/$name
|
2016-02-24 01:27:23 +01:00
|
|
|
}
|
|
|
|
|