diff options
-rw-r--r-- | testing/gyp/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/gyp/APKBUILD b/testing/gyp/APKBUILD new file mode 100644 index 0000000000..5e5494ea32 --- /dev/null +++ b/testing/gyp/APKBUILD @@ -0,0 +1,24 @@ +# Contributor: Leo <thinkabit.ukim@gmail.com> +# Maintainer: Leo <thinkabit.ukim@gmail.com> +pkgname=gyp +pkgver=20190707 +_commit=aca1e2c3d346d704adfa60944e6b4dd06f4728be +pkgrel=0 +pkgdesc="Generate Your Projects Meta-Build system" +options="!check" # Tests currently fail +url="https://gyp.gsrc.io" +arch="noarch" +license="BSD-3-Clause" +depends="py-setuptools ninja" +source="https://github.com/chromium/gyp/archive/$_commit.tar.gz" +builddir="$srcdir/$pkgname-$_commit" + +build() { + python2 setup.py build +} + +package() { + python2 setup.py install --root="$pkgdir" +} + +sha512sums="bfe8484290e7216888c001638a5b6e42fc254ecf13320c9398a1c2a71e968f8338aebe2fe6edc64de3fe75203ad704bd8976caef21affe21f97430b838fefc52 aca1e2c3d346d704adfa60944e6b4dd06f4728be.tar.gz" |