core/exiv2/PKGBUILD
Jan Mette 93d9bd24fe
2010-03-14 15:48:48 +00:00

26 lines
600 B
Bash

#$Id: PKGBUILD 71297 2010-03-06 02:19:53Z pierre $
# Maintainer: tobias <tobias@arhlinux.org>
pkgname=exiv2
pkgver=0.19
pkgrel=1
pkgdesc="Exif and Iptc metadata manipulation library and tools."
arch=('i686' 'x86_64')
url="http://exiv2.org"
license=('GPL2')
depends=('gcc-libs' 'zlib' 'expat')
options=('!libtool')
source=("http://www.exiv2.org/${pkgname}-${pkgver}.tar.gz")
md5sums=('f52fb75a2cb7512f1484deab76473e13')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make || return 1
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}