blob: 4d4bfd4c520590ed6cc5a9635d3520c49f7979e7 (
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.13.r0.g51d7a34
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')
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
}
|