diff options
author | root <root@rshg054.dnsready.net> | 2013-02-14 00:04:52 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-02-14 00:04:52 -0800 |
commit | 0bf564cf7a3d99207457267c75f92ceb67197537 (patch) | |
tree | 92c12891df8b8cc45a54b34413ecba167599bed5 /community/libgexiv2 | |
parent | 0671250710c3e7312a4693ac45ebbaacf471d1dc (diff) |
Thu Feb 14 00:04:51 PST 2013
Diffstat (limited to 'community/libgexiv2')
-rw-r--r-- | community/libgexiv2/PKGBUILD | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/community/libgexiv2/PKGBUILD b/community/libgexiv2/PKGBUILD index 0ee1f9d67..199123d05 100644 --- a/community/libgexiv2/PKGBUILD +++ b/community/libgexiv2/PKGBUILD @@ -1,29 +1,30 @@ -# $Id: PKGBUILD 81868 2013-01-02 15:41:00Z jelle $ -# Maintainer: Ionut Biru <ibiru@archlinux.org> +# $Id: PKGBUILD 84188 2013-02-13 13:24:10Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Ionut Biru <ibiru@archlinux.org> pkgname=libgexiv2 pkgver=0.5.0 -pkgrel=1 -pkgdesc="GObject-based wrapper around the Exiv2 library." -arch=('i686' 'x86_64') -url="http://redmine.yorba.org/projects/gexiv2" +pkgrel=2 +pkgdesc='GObject-based wrapper around the Exiv2 library' +arch=('x86_64' 'i686') +url='http://redmine.yorba.org/projects/gexiv2' license=('GPL2') -depends=('exiv2' 'glib2') +depends=('exiv2' 'glib2' 'gobject-introspection') options=('!libtool') source=("http://yorba.org/download/gexiv2/0.5/$pkgname-$pkgver.tar.xz") -md5sums=('655528168648fd681a061bddaabc79ee') +sha256sums=('3e0d1efbe895912d00b4394f8939b230fa581321f28d5c3c0fbac06b065e3010') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr + ./configure --prefix=/usr --enable-introspection make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="${pkgdir}" install + make DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et: |