summaryrefslogtreecommitdiff
path: root/~lukeshu/svn-graph-branches
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-12-23 13:51:11 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-12-23 13:51:11 -0500
commit8b024219267fe0dfe3a251ff966af66a1fd23d7b (patch)
tree46c48eb220673fa64ea8995b22b2a4160acaa452 /~lukeshu/svn-graph-branches
parentb387eed298e43c21d6809b56d23c8059e564a876 (diff)
add svn-graph-branches to [~lukeshu]
Diffstat (limited to '~lukeshu/svn-graph-branches')
-rw-r--r--~lukeshu/svn-graph-branches/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/~lukeshu/svn-graph-branches/PKGBUILD b/~lukeshu/svn-graph-branches/PKGBUILD
new file mode 100644
index 000000000..63568e50c
--- /dev/null
+++ b/~lukeshu/svn-graph-branches/PKGBUILD
@@ -0,0 +1,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
+}