opt/ninja/Pkgfile

17 lines
413 B
Plaintext
Raw Normal View History

# Description: Small build system with a focus on speed
2017-05-03 17:07:55 +02:00
# URL: https://ninja-build.org/
2017-09-22 18:38:17 +02:00
# Maintainer: Fredrik Rinnestam, fredrik at crux dot guru
# Depends on: python3
name=ninja
2020-09-03 22:02:03 +02:00
version=1.10.1
2020-01-29 18:28:59 +01:00
release=1
2017-09-07 04:57:02 +02:00
source=(https://github.com/$name-build/$name/archive/v$version/$name-v$version.tar.gz)
build() {
2017-09-22 18:38:17 +02:00
cd $name-$version
2017-09-07 04:57:02 +02:00
/usr/bin/python3 configure.py --bootstrap
2017-09-22 18:38:17 +02:00
install -D -m 0755 $name $PKG/usr/bin/$name
}