mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
29 lines
856 B
Text
29 lines
856 B
Text
# Contributor: Kiyoshi Aman <kiyoshi.aman@gmail.com>
|
|
# Maintainer: Kiyoshi Aman <kiyoshi.aman@gmail.com>
|
|
pkgname=git-cola
|
|
pkgver=3.9
|
|
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="91f4bb40c166669e05136985920113d7482a396a46adf45fcf05e8ee56677fee7ebfb6a793face79737a17be42aa5e32b216a30847e8e4a5b8dc5b3b4eba5395 git-cola-3.9.tar.gz"
|