diff options
author | root <root@rshg054.dnsready.net> | 2012-08-04 00:02:16 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-08-04 00:02:16 +0000 |
commit | f8ac5d4703080cc87ba2fe36f68df745d3a5f62f (patch) | |
tree | 641ccb335800a868031ab1d89d554e5c1b0f0d9a /community-testing/libgexiv2 | |
parent | 60f7eab28ba0dd57c8ce519609f393dd3931b621 (diff) |
Sat Aug 4 00:02:16 UTC 2012
Diffstat (limited to 'community-testing/libgexiv2')
-rw-r--r-- | community-testing/libgexiv2/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community-testing/libgexiv2/PKGBUILD b/community-testing/libgexiv2/PKGBUILD new file mode 100644 index 000000000..264648b17 --- /dev/null +++ b/community-testing/libgexiv2/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 74732 2012-08-02 15:23:56Z andrea $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> + +pkgname=libgexiv2 +pkgver=0.4.1 +pkgrel=3 +pkgdesc="GObject-based wrapper around the Exiv2 library." +arch=('i686' 'x86_64') +url="http://redmine.yorba.org/projects/gexiv2" +license=('GPL2') +depends=('exiv2' 'glib2') +options=('!libtool') +source=(http://yorba.org/download/gexiv2/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2) +sha1sums=('b74cd19a4cf4a4a32a938ecb267974c29e630dc2') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install +} + +# vim:set ts=2 sw=2 et: |