# 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"