summaryrefslogtreecommitdiff
path: root/staging/exiv2/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'staging/exiv2/PKGBUILD')
-rw-r--r--staging/exiv2/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/staging/exiv2/PKGBUILD b/staging/exiv2/PKGBUILD
new file mode 100644
index 000000000..1e1b8eb3c
--- /dev/null
+++ b/staging/exiv2/PKGBUILD
@@ -0,0 +1,26 @@
+#$Id: PKGBUILD 139500 2011-10-02 12:29:57Z eric $
+# Maintainer: tobias <tobias@arhlinux.org>
+
+pkgname=exiv2
+pkgver=0.22
+pkgrel=1
+pkgdesc="Exif and Iptc metadata manipulation library and tools"
+arch=('i686' 'x86_64')
+url="http://exiv2.org"
+license=('GPL')
+depends=('gcc-libs' 'zlib' 'expat')
+options=('!libtool')
+source=("http://www.exiv2.org/${pkgname}-${pkgver}.tar.gz")
+md5sums=('84d7d5b1802529efca8ac3d6e6a97e3a')
+sha1sums=('35211d853a986fe1b008fca14db090726e8dcce3')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ CPPFLAGS="-D_FILE_OFFSET_BITS=64" ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}