blob: 95a40d184cf3d152f5bd4c0c04eae374116e04a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#$Id$
# Maintainer: tobias <tobias@arhlinux.org>
pkgname=exiv2
pkgver=0.25
pkgrel=3
pkgdesc="Exif, Iptc and XMP metadata manipulation library and tools"
arch=('i686' 'x86_64')
url="http://exiv2.org"
license=('GPL2')
depends=('gcc-libs' 'zlib' 'expat')
source=(http://www.exiv2.org/${pkgname}-${pkgver}.tar.gz)
md5sums=('258d4831b30f75a01e0234065c6c2806')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --enable-video
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="${pkgdir}" install
}
|