blob: 63568e50cf6d7bd0729635edcae05e5ad596f520 (
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
|
# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
pkgname=svn-graph-branches
pkgver=0.10
pkgrel=1
pkgdesc="Parses the Subversion log of a repository to generate a graph of the important events of the project."
arch=('any')
url="https://code.google.com/p/svn-graph-branches/"
license=('GPL')
depends=('subversion' 'graphviz' 'java-environment')
makedepends=('sharutils')
source=(https://svn-graph-branches.googlecode.com/files/$pkgname-$pkgver.tar.gz)
sha1sums=('c8b85b57b7725bc869f792334505d36d527e1dea')
build() {
cd "$srcdir/$pkgname-$pkgver"
export CLASSPATH=`pwd`
./configure --prefix=/usr
make
}
check() {
cd "$srcdir/$pkgname-$pkgver"
make -k check
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|