core/exiv2/PKGBUILD

24 lines
487 B
Bash
Raw Normal View History

2010-03-14 23:48:48 +08:00
pkgname=exiv2
pkgver=0.25
2010-03-14 23:48:48 +08:00
pkgrel=1
pkgdesc="Exif and Iptc metadata manipulation library and tools."
2014-07-24 22:49:00 +08:00
arch=('x86_64')
2010-03-14 23:48:48 +08:00
url="http://exiv2.org"
license=('GPL2')
depends=('gcc-libs' 'zlib' 'expat')
options=('!libtool')
source=("http://www.exiv2.org/${pkgname}-${pkgver}.tar.gz")
md5sums=('258d4831b30f75a01e0234065c6c2806')
2010-03-14 23:48:48 +08:00
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
2014-07-24 22:49:00 +08:00
make
2010-03-14 23:48:48 +08:00
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}