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/gpicview/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gpicview/PKGBUILD')
-rw-r--r-- | community/gpicview/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/gpicview/PKGBUILD b/community/gpicview/PKGBUILD new file mode 100644 index 000000000..faf15aff6 --- /dev/null +++ b/community/gpicview/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr> +pkgname=gpicview +pkgver=0.2.1 +pkgrel=3 +pkgdesc="Picture viewer of the LXDE Desktop" +arch=('i686' 'x86_64') +license=('GPL2') +url="http://lxde.org/" +groups=('lxde') +depends=('gtk2') +makedepends=('pkgconfig' 'intltool') +optdepends=('librsvg: For SVG support') +source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz) +md5sums=('a2de255bf9bdc40746c0dc89b3454a10') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --sysconfdir=/etc --prefix=/usr || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} |