summaryrefslogtreecommitdiff
path: root/testing/exiv2
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-08-04 00:02:16 +0000
committerroot <root@rshg054.dnsready.net>2012-08-04 00:02:16 +0000
commitf8ac5d4703080cc87ba2fe36f68df745d3a5f62f (patch)
tree641ccb335800a868031ab1d89d554e5c1b0f0d9a /testing/exiv2
parent60f7eab28ba0dd57c8ce519609f393dd3931b621 (diff)
Sat Aug 4 00:02:16 UTC 2012
Diffstat (limited to 'testing/exiv2')
-rw-r--r--testing/exiv2/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/exiv2/PKGBUILD b/testing/exiv2/PKGBUILD
new file mode 100644
index 000000000..0d5a550d2
--- /dev/null
+++ b/testing/exiv2/PKGBUILD
@@ -0,0 +1,25 @@
+#$Id: PKGBUILD 164674 2012-08-02 15:21:12Z andrea $
+# Maintainer: tobias <tobias@arhlinux.org>
+
+pkgname=exiv2
+pkgver=0.23
+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")
+sha1sums=('5f342bf642477526f41add11d6ee7787cdcd639f')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ CPPFLAGS="-D_FILE_OFFSET_BITS=64" ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}