aboutsummaryrefslogtreecommitdiffstats
path: root/testing/gn/APKBUILD
blob: a289cc10f110c5654389894b1a6918646e3e1386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Maintainer: Sven Assmann <sven@d34dl0ck.me>
pkgname=gn
pkgver=1530
pkgrel=0
pkgdesc="GN is a meta-build system that generates build files for Ninja."
url="https://gn.googlesource.com/gn/+/1ab6fa2c/README.md"
arch="all"
license="BSD-3-Clause"
depends="libgcc musl"
makedepends="python2 ninja git clang"
giturl="https://gn.googlesource.com/gn"
builddir="$srcdir"

fetch() {
    git clone https://gn.googlesource.com/gn "$builddir/git"
    cd "$builddir/git"
    git reset --hard 1ab6fa2c
}

prepare() {
    "$builddir/git/build/gen.py"
}

build() {
    cd "$builddir/git"
    ninja -C out -j 8
}

package() {
    install -m755 -D "$builddir/git/out/$pkgname" "$pkgdir/usr/bin/$pkgname"
}