diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-02-09 10:32:20 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-02-09 10:32:20 -0300 |
commit | 6cc893589a6bd208f2b7711f985e17df7a6df816 (patch) | |
tree | c41cb07e4e88c4eff5bc05e44b86b860f96654b8 /community/gimp-dbp/PKGBUILD | |
parent | 5995e8be41750a8ac397ac358f5c2bedca3a4d1e (diff) | |
parent | f0ab416208be17c176b9430a3537f05b5c653aec (diff) |
Merge branch 'master' of gparabola:abslibre-mips64el
Diffstat (limited to 'community/gimp-dbp/PKGBUILD')
-rw-r--r-- | community/gimp-dbp/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/gimp-dbp/PKGBUILD b/community/gimp-dbp/PKGBUILD new file mode 100644 index 000000000..d41ad9b66 --- /dev/null +++ b/community/gimp-dbp/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 83142 2013-01-27 16:14:44Z pierre $ +# Maintainer: tobias <tobias@archlinux.org> +# Contributor: Tobias Kieslich <tobias@justdreams.de> + +pkgname=gimp-dbp +pkgver=1.1.9 +pkgrel=3 +pkgdesc="David's batch processor for the GIMP" +arch=('i686' 'x86_64') +url="http://members.ozemail.com.au/~hodsond/dbp.html" +license=('GPL') +depends=('gimp') +source=(http://www.ozemail.com.au/~hodsond/dbpSrc-${pkgver//./-}.tgz) +md5sums=('1106625707798ab8ea1317ac6bece1c5') + +build() { + cd "${srcdir}/dbp-${pkgver}" + sed -i "s|<string>|<cstring>|" op.h + make +} + +package() { + cd "${srcdir}/dbp-${pkgver}" + install -D -m755 dbp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/dbp" +} |