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/gliv/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gliv/PKGBUILD')
-rw-r--r-- | community/gliv/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/gliv/PKGBUILD b/community/gliv/PKGBUILD new file mode 100644 index 000000000..9875b6eb0 --- /dev/null +++ b/community/gliv/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> +# Contributor: Ewoud Nuyts <ewoud.nuyts@gmail.com> + +pkgname=gliv +pkgver=1.9.7 +pkgrel=1 +pkgdesc="OpenGL image viewer" +arch=('i686' 'x86_64') +url="http://guichaz.free.fr/gliv/" +license=('GPL') +depends=('gtkglext') +changelog=$pkgname.changelog +source=(http://guichaz.free.fr/gliv/files/${pkgname}-${pkgver}.tar.bz2) +md5sums=('5f0fafaf41651da8882e88b3df062d02') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + ./configure --prefix=/usr --mandir=/usr/share/man + sed -i 's:pixmaps |:pixmaps $(datadir)/applications |:;s:vendor=gnome:vendor=gnome --dir=$(datadir)/applications:' Makefile + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |