diff options
author | root <root@rshg054.dnsready.net> | 2013-01-28 00:05:59 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-01-28 00:05:59 -0800 |
commit | 1b9f6dc846379470b620b5dbb9d4d7acd1de148c (patch) | |
tree | 2305b950a3c94970b05c1a38af473f5cca95af02 /community/gimp-gap/PKGBUILD | |
parent | b9b96ada56ad38df20b1e528a095a1e86ab67a2b (diff) |
Mon Jan 28 00:05:59 PST 2013
Diffstat (limited to 'community/gimp-gap/PKGBUILD')
-rw-r--r-- | community/gimp-gap/PKGBUILD | 28 |
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 +} |