PKGBUILDs/extra/feh/PKGBUILD
2009-10-09 21:23:22 -05:00

23 lines
774 B
Bash

# $Id: PKGBUILD 53868 2009-10-03 16:53:48Z eric $
# Maintainer: dorphell <dorphell@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=feh
pkgver=1.3.4
pkgrel=5
pkgdesc="feh is a fast, lightweight image viewer which uses imlib2"
arch=('i686' 'x86_64')
url="http://www.linuxbrit.co.uk/feh/"
license=('MIT')
depends=('libpng' 'libxinerama' 'giblib')
makedepends=('libxt')
source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('3d35ba3d2f0693b019800787f1103891')
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
}