aboutsummaryrefslogtreecommitdiffstats
path: root/testing/git-cola/APKBUILD
blob: 352820bc7a2e5728b50b4a0613e14eba346e57cb (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
32
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="GPL-2.0-or-later"
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"