mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
29 lines
836 B
Text
29 lines
836 B
Text
# 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"
|