diff options
author | Kiyoshi Aman <kiyoshi.aman@gmail.com> | 2017-09-24 21:33:21 -0500 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-10-01 07:49:02 +0000 |
commit | cdaaaf3a57617d7c4393a83c91ab21201ce578de (patch) | |
tree | beb6a2f6bace49f1d022cce9d4fe8154d1800b0c /testing/git-cola | |
parent | c076b0c35e029599f418a8703d2c892365b745fb (diff) | |
download | aports-cdaaaf3a57617d7c4393a83c91ab21201ce578de.tar.bz2 aports-cdaaaf3a57617d7c4393a83c91ab21201ce578de.tar.xz |
testing/git-cola: new aport
Diffstat (limited to 'testing/git-cola')
-rw-r--r-- | testing/git-cola/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/git-cola/APKBUILD b/testing/git-cola/APKBUILD new file mode 100644 index 0000000000..ee2b16f804 --- /dev/null +++ b/testing/git-cola/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Kiyoshi Aman <kiyoshi.aman@gmail.com> +# Maintainer: Kiyoshi Aman <kiyoshi.aman@gmail.com> +pkgname=git-cola +pkgver=2.11 +pkgrel=0 +pkgdesc="A GUI application for git built on Python & Qt5" +url="https://git-cola.github.io" +arch="noarch" +license="GPL2+" +depends="python3 py3-qtpy" +checkdepends="py3-nose" +makedepends="python3-dev py3-qtpy" +subpackages="$pkgname-doc" +source="git-cola-$pkgver.tar.gz::https://github.com/git-cola/git-cola/archive/v$pkgver.tar.gz" +builddir="$srcdir/git-cola-$pkgver" +# testsuite hangs after a while. +options="!check" + +build() { + cd "$builddir" + make PYTHON=python3 +} +check () { + cd "$builddir" + make PYTHON=python3 test +} + +package() { + cd "$builddir" + make PYTHON=python3 prefix=/usr DESTDIR="$pkgdir" install +} + +sha512sums="99b865d7a49dcb041e54811141d242386642b5ed6fc12fa7a03431eb9b905cb88d88c4892dc432dd59e8ae3c85f20cc40f4bfb9b6ff002f4e5a4cfc0bdc4c72c git-cola-2.11.tar.gz" |