PKGBUILDs/extra/exiv2/PKGBUILD

22 lines
547 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
#$Id: PKGBUILD 31301 2009-03-25 16:14:51Z pierre $
# Maintainer: tobias <tobias@arhlinux.org>
pkgname=exiv2
pkgver=0.18
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=('03044792525ae0a1b109df5a53b858fb')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make || return 1
make DESTDIR=${pkgdir} install
}