diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/gimp-gap |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/gimp-gap')
-rw-r--r-- | extra/gimp-gap/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/gimp-gap/PKGBUILD b/extra/gimp-gap/PKGBUILD new file mode 100644 index 000000000..997bb3fe2 --- /dev/null +++ b/extra/gimp-gap/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 64731 2010-01-22 02:05:13Z eric $ +# Maintainer: tobias <tobias@archlinux.org> +# Contributor: Tobias Kieslich <tobias@justdreams.de> + +pkgname=gimp-gap +pkgver=2.6.0 +pkgrel=2 +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>=2.6.0' '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" + #Arch64 fix + if [ "$CARCH" = "x86_64" ]; then + ./configure --prefix=/usr CFLAGS="$CFLAGS -fPIC" || return 1 + else + ./configure --prefix=/usr || return 1 + fi + + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} |