diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-01-12 11:53:01 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-01-12 11:53:01 +0000 |
commit | 765bc48e81d0879543bcf63c4def2ec40236aab3 (patch) | |
tree | b0fb269d325ee234f892de14270828ccedeefe0c | |
parent | 8dff5c0fd9298d288de640f64d358652638f1253 (diff) | |
download | aports-765bc48e81d0879543bcf63c4def2ec40236aab3.tar.bz2 aports-765bc48e81d0879543bcf63c4def2ec40236aab3.tar.xz |
testing/exiv2: new aport
Exif and Iptc metadata manipulation library and tools.
http://exiv2.org
-rw-r--r-- | testing/exiv2/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/exiv2/APKBUILD b/testing/exiv2/APKBUILD new file mode 100644 index 0000000000..b5f8343e84 --- /dev/null +++ b/testing/exiv2/APKBUILD @@ -0,0 +1,27 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=exiv2 +pkgver=0.21 +pkgrel=0 +pkgdesc="Exif and Iptc metadata manipulation library and tools." +url="http://exiv2.org" +arch="all" +license="GPL2" +depends="" +depends_dev="expat-dev zlib-dev" +makedepends="zlib-dev expat-dev" +subpackages="$pkgname-dev $pkgname-doc" +source="http://www.exiv2.org/exiv2-$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver +build() { + cd "$_builddir" + ./configure --prefix=/usr + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="2caf74de59b5424996959ccea1c001fb exiv2-0.21.tar.gz" |