mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-30 04:52:27 +01:00
30 lines
856 B
Plaintext
30 lines
856 B
Plaintext
# Contributor: Kiyoshi Aman <kiyoshi.aman@gmail.com>
|
|
# Maintainer: Kiyoshi Aman <kiyoshi.aman@gmail.com>
|
|
pkgname=git-cola
|
|
pkgver=3.8
|
|
pkgrel=0
|
|
pkgdesc="GUI application for git built on Python & Qt5"
|
|
url="https://git-cola.github.io"
|
|
arch="noarch !armhf" # qtdeclarative
|
|
license="GPL-2.0-or-later"
|
|
depends="python3 py3-qt5"
|
|
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="9ae04dfef3b5bc64452a8df43e7afa93091f282097447208dadbd17522b62e5c43f7afce3eecc59fc4e38863496cdb41ac8b0453bbf327121629fbde20e45bb0 git-cola-3.8.tar.gz"
|