# $Id: PKGBUILD 67926 2010-02-09 19:58:32Z giovanni $ # Maintainer: François Charette # Contributor: Giovanni Scafora pkgname=jhead pkgver=2.90 pkgrel=1 pkgdesc="EXIF JPEG info parser and thumbnail remover" arch=(i686 x86_64) url="http://www.sentex.net/~mwandel/jhead/" arch=('i686' 'x86_64') license=('custom') depends=('glibc') optdepends=('libjpeg: to up-right images according to rotation tag') source=(http://www.sentex.net/~mwandel/${pkgname}/${pkgname}-${pkgver}.tar.gz LICENSE) md5sums=('661effa9420bb92cb99ced697c5a177f' '1f0db611d2642a981719f45252762a45') build() { cd "${srcdir}/${pkgname}-${pkgver}" make || return 1 install -D -m755 jhead "${pkgdir}/usr/bin/jhead" || return 1 install -D -m644 jhead.1 "${pkgdir}/usr/share/man/man1/jhead.1" || return 1 install -D -m644 ${srcdir}/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1 }