summaryrefslogtreecommitdiff
path: root/community-testing/gource/PKGBUILD
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernandez <hahj87@gmail.com>2011-06-01 10:22:42 -0500
committerJoshua Ismael Haase Hernandez <hahj87@gmail.com>2011-06-01 10:22:42 -0500
commitd0ff33b1fe48e45ca08f7ca62dc36486250ecb77 (patch)
tree4cf47d0b1ab194cbdbf2b9088bd6b4e74514895a /community-testing/gource/PKGBUILD
parenta132c57ad9882be1abe3785f1f103d6e5011866f (diff)
parentc40a217db5f63be3aa88a32ad77ec93efb40d95c (diff)
Merge branch 'master' of vparabola:~/abslibre-pre-mips64el
Conflicts: kde-unstable/calligra/PKGBUILD
Diffstat (limited to 'community-testing/gource/PKGBUILD')
-rw-r--r--community-testing/gource/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community-testing/gource/PKGBUILD b/community-testing/gource/PKGBUILD
new file mode 100644
index 000000000..2c357a634
--- /dev/null
+++ b/community-testing/gource/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 47914 2011-05-26 01:27:25Z svenstaro $
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+# Contributor: Jose Valecillos <valecillosjg (at) gmail (dot) com>
+# Contributor: Olivier Ramonat <olivier at ramonat dot fr>
+pkgname=gource
+pkgver=0.34
+pkgrel=2
+pkgdesc="software version control visualization"
+license=(GPL3)
+arch=(i686 x86_64)
+url=http://code.google.com/p/gource/
+depends=('ftgl' 'sdl' 'sdl_image' 'pcre' 'glew')
+source=(http://gource.googlecode.com/files/$pkgname-$pkgver.tar.gz)
+md5sums=('292a62d687874e871067e985d717d71a')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR=$pkgdir install
+}
+# vim: ts=2:sw=2 et: