summaryrefslogtreecommitdiff
path: root/community/gimp-gap/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/gimp-gap/PKGBUILD')
-rw-r--r--community/gimp-gap/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/gimp-gap/PKGBUILD b/community/gimp-gap/PKGBUILD
new file mode 100644
index 000000000..f541a468b
--- /dev/null
+++ b/community/gimp-gap/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 83144 2013-01-27 16:15:18Z pierre $
+# Maintainer: tobias <tobias@archlinux.org>
+# Contributor: Tobias Kieslich <tobias@justdreams.de>
+
+pkgname=gimp-gap
+pkgver=2.6.0
+pkgrel=3
+pkgdesc="A Plug-In collection to edit and create animations for the Gimp"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.gimp.org/downloads/"
+depends=('gimp' 'xvidcore' 'bash' 'libjpeg')
+makedepends=('intltool')
+options=('!makeflags')
+source=(ftp://ftp.gimp.org/pub/gimp/plug-ins/v2.6/gap/$pkgname-$pkgver.tar.bz2)
+md5sums=('249ed829de8b78675c0fe4ef4212089f')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ [ "$CARCH" = "x86_64" ] && CFLAGS+="-fPIC"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}