desktop/git-cola/PKGBUILD
2019-02-12 02:56:25 +01:00

24 lines
683 B
Bash

pkgname=git-cola
pkgver=3.3
pkgrel=1
pkgdesc="A powerful GUI for Git"
arch=('any')
url="https://git-cola.github.io/"
license=('GPL')
depends=('git' 'python3-pyqt5' 'icu' 'qt5-svg')
makedepends=('asciidoc' 'docbook-xsl' 'rsync' 'xmlto' 'python3-sphinx' 'sip')
optdepends=('python3-pyinotify: for inotify support')
options=('!makeflags')
source=("$pkgname-$pkgver.tar.gz::https://github.com/git-cola/git-cola/archive/v$pkgver.tar.gz")
sha256sums=('b3fa0d339509564164d8ab3c8cd0c076ad3fdd500af3cea55a7fa4a089cd3c01')
build() {
cd "$srcdir/${pkgname}-$pkgver"
make all doc html
}
package() {
cd "$srcdir/${pkgname}-$pkgver"
make prefix=/usr DESTDIR="$pkgdir" install{,-doc,-html}
}