From b1aa63bbcc26e272aedc0b1097728d3d599b907e Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 16 Jul 2009 19:47:19 +0000 Subject: [PATCH] x11/feh: new aport feh is a fast, lightweight image viewer which uses imlib2 http://www.linuxbrit.co.uk/feh/ --- x11/feh/APKBUILD | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 x11/feh/APKBUILD diff --git a/x11/feh/APKBUILD b/x11/feh/APKBUILD new file mode 100644 index 00000000000..a609b8d9946 --- /dev/null +++ b/x11/feh/APKBUILD @@ -0,0 +1,22 @@ +# Maintainer: Natanael Copa +pkgname=feh +pkgver=1.3.4 +pkgrel=0 +pkgdesc="feh is a fast, lightweight image viewer which uses imlib2" +url="http://www.linuxbrit.co.uk/feh/" +license="MIT" +subpackages="$pkgname-doc" +depends= +makedepends="libxt-dev libpng-dev giblib-dev imlib2-dev jpeg-dev" +source="http://linuxbrit.co.uk/downloads/$pkgname-$pkgver.tar.gz" + +build () +{ + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr \ + --mandir=/usr/share/man || return 1 + make || return 1 + make DESTDIR=$pkgdir docsdir=/usr/share/doc/feh install || return 1 + install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE +} +md5sums="3d35ba3d2f0693b019800787f1103891 feh-1.3.4.tar.gz"