aboutsummaryrefslogtreecommitdiffstats
path: root/PKGBUILD
blob: 98b051ce7b26dbb4db81fa7415576a0e56e1fadd (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
30
31
32
pkgname=src-git
pkgver=0.18.r0.gc89b187
pkgrel=1

pkgdesc="Simple Revision Control with modern UI for single-file projects"
url="http://www.catb.org/esr/src/"
arch=('any')
license=('BSD')

depends=('python2' 'rcs')
optdepends=('rcs-fast-import: required for src fast-import')
makedepends=('asciidoc' 'git')

source=('git+https://gitorious.org/src-vcs/src-vcs.git')

sha1sums=('SKIP')

pkgver() {
	cd src-vcs
	git describe --long | sed -r 's/([^-]*-g)/r\1/; s/-/./g'
}

check() {
	cd src-vcs
	make check
}

package() {
	cd src-vcs
	make DESTDIR="$pkgdir" prefix=/usr install
	install -Dm644 COPYING "$pkgdir"/usr/share/licenses/"$pkgname"/COPYING
}