diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/gource |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gource')
-rw-r--r-- | community/gource/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/gource/PKGBUILD b/community/gource/PKGBUILD new file mode 100644 index 000000000..40c9fc388 --- /dev/null +++ b/community/gource/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 42923 2011-03-22 18:17:04Z 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.32 +pkgrel=1 +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=('7aed2fcf8f0c09b8cea5b19a418b0724') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR=$pkgdir install +} +# vim: ts=2:sw=2 et: |