diff options
author | alpine-mips-patches <info@mobile-stream.com> | 2018-12-03 10:26:30 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-12-17 07:40:12 +0000 |
commit | b7b4370cceb37679736c004559498275c20c608f (patch) | |
tree | adda18b0ca1ae74d8dc29f1f900f0ef42449773b /community/neko/APKBUILD | |
parent | 5e3ace2c1be097bff9db50d239dea6405fdfe8d4 (diff) | |
download | aports-b7b4370cceb37679736c004559498275c20c608f.tar.bz2 aports-b7b4370cceb37679736c004559498275c20c608f.tar.xz |
community/neko: fix build without git installed
Remove all targets that depend on git (source_archive and friends),
none of them are used during normal build.
Diffstat (limited to 'community/neko/APKBUILD')
-rw-r--r-- | community/neko/APKBUILD | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/community/neko/APKBUILD b/community/neko/APKBUILD index e5e3015d10..f6953af279 100644 --- a/community/neko/APKBUILD +++ b/community/neko/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Andy Li <andy@onthewings.net> pkgname=neko pkgver=2.2.0 -pkgrel=3 +pkgrel=4 pkgdesc="High-level dynamically typed programming language" url="https://nekovm.org/" arch="all" @@ -15,7 +15,9 @@ options="" install="" subpackages="$pkgname-dev $pkgname-libs $pkgname-mysql $pkgname-ui $pkgname-apache2" -source="$pkgname-$pkgver.tar.gz::https://github.com/HaxeFoundation/neko/archive/v${pkgver//./-}.tar.gz" +source="$pkgname-$pkgver.tar.gz::https://github.com/HaxeFoundation/neko/archive/v${pkgver//./-}.tar.gz + remove-git-dependent-targets.patch + " builddir="$srcdir/$pkgname-${pkgver//./-}" build() { @@ -65,4 +67,5 @@ apache2() { _mv_ndll mod_neko2 mod_tora2 } -sha512sums="4bc89fddf4a5ae94e73843b06a3b6fe8de59d72922764276a5bd9d56daf6570525e842039bf704598b41e1de4a5fe08931adc4ca9730fe3333be0beb7a1ccaed neko-2.2.0.tar.gz" +sha512sums="4bc89fddf4a5ae94e73843b06a3b6fe8de59d72922764276a5bd9d56daf6570525e842039bf704598b41e1de4a5fe08931adc4ca9730fe3333be0beb7a1ccaed neko-2.2.0.tar.gz +ed1aa657b385df7764b8e3a36edd56e7844ba0d326f79a48ab48f1b88868f3e4529e0e84f0dc9eeaae03e6b00fb2e7253afa10b2d56d677844cdbe9c72b81cc3 remove-git-dependent-targets.patch" |