diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-03-12 20:10:03 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-03-12 20:10:03 +0000 |
commit | 557f5df09fb8d5bf54fb96aed41bd2427b37e122 (patch) | |
tree | 44688b7dcced2d23c0c5762a200fda126d0347f6 /testing | |
parent | 6bf90afc69b52ffeab8c4a557f761168096dbf01 (diff) | |
download | aports-557f5df09fb8d5bf54fb96aed41bd2427b37e122.tar.bz2 aports-557f5df09fb8d5bf54fb96aed41bd2427b37e122.tar.xz |
testing/gpicview: new aport
Picture viewer of the LXDE Desktop
http://wiki.lxde.org/en/GPicView
Diffstat (limited to 'testing')
-rw-r--r-- | testing/gpicview/APKBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/gpicview/APKBUILD b/testing/gpicview/APKBUILD new file mode 100644 index 0000000000..9db0713c8b --- /dev/null +++ b/testing/gpicview/APKBUILD @@ -0,0 +1,21 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=gpicview +pkgver=0.2.1 +pkgrel=0 +pkgdesc="Picture viewer of the LXDE Desktop" +url="http://wiki.lxde.org/en/GPicView" +license="GPL-2" +depends="gtk+-dev intltool jpeg-dev" +source="http://downloads.sourceforge.net/sourceforge/lxde/$pkgname-$pkgver.tar.gz" + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --sysconfdir=/etc --prefix=/usr || return 1 + make || return 1 +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="a2de255bf9bdc40746c0dc89b3454a10 gpicview-0.2.1.tar.gz" |