diff options
Diffstat (limited to 'pcr/gimpfx-foundry')
-rw-r--r-- | pcr/gimpfx-foundry/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pcr/gimpfx-foundry/PKGBUILD b/pcr/gimpfx-foundry/PKGBUILD new file mode 100644 index 000000000..c49167eab --- /dev/null +++ b/pcr/gimpfx-foundry/PKGBUILD @@ -0,0 +1,21 @@ +# Contributor (Arch): Vitaliy Berdinskikh <skipper13@root.ua> +# Maintainer : Omar Vega Ramos <ovruni@gnu.org.pe> + +pkgname=gimpfx-foundry +pkgver=2.6_1 +pkgrel=2.1 +pkgdesc="Collection of Gimp scripts" +url="http://gimpfx-foundry.sourceforge.net/" +license="GPL" +arch=('any') +depends=('gimp') +source=(http://downloads.sourceforge.net/sourceforge/gimpfx-foundry/${pkgname}-${pkgver/_/-}.tar.gz) +md5sums=('72c01fe6ac0dd4ce3151d306113c01a7') +sha1sums=('ee4aa98c60bbf6a70ef1404c50cbd27530bf9597') + +package() { + cd $srcdir + + mkdir -p $pkgdir/usr/share/gimp/2.0/scripts + install -m644 *.scm $pkgdir/usr/share/gimp/2.0/scripts +} |