mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
21 lines
547 B
Bash
21 lines
547 B
Bash
#$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
|
|
}
|