blob: 4b368a01ac8ac3cc32b4f66667dc40c731ec9d67 (
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
|
# Contributor: Kiyoshi Aman <kiyoshi.aman@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman@gmail.com>
pkgname=git-cola
pkgver=3.5
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="py3-setuptools"
subpackages="$pkgname-doc"
source="git-cola-$pkgver.tar.gz::https://github.com/git-cola/git-cola/archive/v$pkgver.tar.gz"
# testsuite hangs after a while.
options="!check"
build() {
make PYTHON=python3
}
check() {
make PYTHON=python3 test
}
package() {
make PYTHON=python3 prefix=/usr DESTDIR="$pkgdir" install
}
sha512sums="532e24092a72486171345aeb0e7610eb49c4062b64395988c6c4965cac6e9ffaed1268c30a0a525d4d99404f626d9e505a4be148d376994d4326e3ca873e2793 git-cola-3.5.tar.gz"
|