blob: e41c89e9bb4c8f8dedb0810e00202c65bb1b96af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Contributor (Arch): Vitaliy Berdinskikh <skipper13@root.ua>
# Maintainer : Omar Vega Ramos <ovruni@gnu.org.pe>
# parabola changes and rationale:
# - upstream pkgbuild is gone, but we keep maintaining this.
pkgname=gimpfx-foundry
pkgver=2.6_1
pkgrel=2.2
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
}
|