# $Id: PKGBUILD 54791 2009-10-11 19:30:09Z giovanni $ # Maintainer: Tobias Kieslich # Contributor: Tobias Kieslich pkgname=gimp-refocus _pname=refocus pkgver=0.9.0 pkgrel=2 arch=(i686 x86_64 'mips64el') license=(GPL2) pkgdesc="a sharpen plugin for gimp using FIR Wiener filtering" depends=('gimp>=2.0.0') url="http://refocus.sourceforge.net/" source=(http://downloads.sourceforge.net/sourceforge/${_pname}/${_pname}-${pkgver}.tar.gz \ ${_pname}-gimp-2.0.patch ${_pname}-mirror-fix.patch ${_pname}-gimp-preview.patch) md5sums=('8d4eac4ef45c904fb5e73021696bec94' '8ef9dfe697cd20be2be14c1ee53a240a'\ '532593cba030feab8ffa7800fc9cd782' '6b55dbdc656646c765064cf21e1a3c57') build() { cd ${startdir}/src/${_pname}-${pkgver} # we need a *load of patches now to compile patch -Np0 -i ../${_pname}-gimp-2.0.patch || return 1 patch -Np0 -i ../${_pname}-mirror-fix.patch || return 1 patch -Np0 -i ../${_pname}-gimp-preview.patch || return 1 aclocal automake -a --gnu --include-deps Makefile automake -a --gnu --include-deps lib/Makefile autoconf echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" ./configure --prefix=/usr --bindir=/usr/lib/gimp/2.0/plug-ins make || return 1 make DESTDIR=${startdir}/pkg install }