summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b4ca833ae8817d300809a8dec9c8238c899cfc11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer: Aaron Fischer <mail@aaron-fischer.net>
# Contributor: wanglun <iseuer@gmail.com>
#
pkgname=gimp-plugin-exif-browser
pkgver=0.1.0
pkgrel=5
pkgdesc="This is an Exif Viewer, mainly for jpeg photos taken with a digital camera. It is an update of the 'Exif Browser' plugin from the old registry. It requires a recent version of libexif (tested with 0.6.16)."
arch=('i686' 'x86_64')
url="http://registry.gimp.org/node/8839"
license=('GPL')
depends=('gimp>=2.4')
makedepends=('libexif')
source=(http://registry.gimp.org/files/exif-browser.tar.gz)
md5sums=('24902f4143445141ab0249fab9141b2a')

build() {
  cd "$srcdir/exif-browser"
  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir/exif-browser"
  make DESTDIR="$pkgdir/" install

  # Remove unused help stuff to avoid conflicts with other packages.
  rm -rf "$pkgdir/usr/share"
}