blob: d51d8ba8bdc990e9b66ac1476e68d16fc3ef9267 (
plain) (
blame)
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
|
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
pkgname=gimp-plugin-image-reg
_srcname=gimp-image-reg
pkgver=0.5.5
pkgrel=2
pkgdesc="Image registration plugin for the GIMP"
arch=('i686' 'x86_64')
url="http://registry.gimp.org/node/24248"
license=('GPL3')
depends=('gimp')
makedepends=('intltool' 'gettext')
source=(http://downloads.sourceforge.net/${_srcname}/${_srcname}-${pkgver}.tar.gz)
md5sums=('405b87140880de18d695173ee6b08981')
build() {
cd "$srcdir/${_srcname}-${pkgver}"
sed -i 's#^GIMP_PLUGIN_BINDIR=.*$#&\nGIMP_PLUGIN_BINDIR="/usr/lib/gimp/2.0/plug-ins"#' ./configure
LIBS='-lm' ./configure --prefix=/usr
make
}
package() {
cd "$srcdir/${_srcname}-${pkgver}"
make DESTDIR="$pkgdir/" PLUGINDIR=/usr/lib/gimp/2.0 install
}
|