diff options
Diffstat (limited to 'extra/eog-plugins/PKGBUILD')
-rw-r--r-- | extra/eog-plugins/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/eog-plugins/PKGBUILD b/extra/eog-plugins/PKGBUILD new file mode 100644 index 000000000..d59b6c7f7 --- /dev/null +++ b/extra/eog-plugins/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 120414 2011-04-23 21:13:06Z ibiru $ +# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> +pkgname=eog-plugins +pkgver=3.0.0 +pkgrel=1 +pkgdesc="Plugins for Eye of Gnome" +arch=('i686' 'x86_64') +url="http://www.gnome.org/" +license=('GPL2') +depends=('eog' 'libpeas' 'libchamplain' 'libexif') +makedepends=('intltool') +source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.bz2) +sha256sums=('87cced9baf3c8ba84dcad95d774686694f5cb140a187a7bad3891bc50bc4c7bd') + +build() { + cd "$srcdir/$pkgname-$pkgver" + PYTHON=/usr/bin/python2 ./configure --prefix=/usr \ + --sysconfdir=/etc --localstatedir=/var + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="${pkgdir}" install +} + +# vim:set ts=2 sw=2 et: |