summaryrefslogtreecommitdiff
path: root/extra/gimp-dbp
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-06-26 15:13:41 -0500
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-06-26 15:13:41 -0500
commitd26fb8dc20ba3b0e6ef535761b3ac5fd8e7b7c70 (patch)
treeae84713aa59e8e2eaa4a2a19db89294ea0b4c1cf /extra/gimp-dbp
parent2095d71af1b9e0c1dff405c178a9481d1020ca3e (diff)
parent8999fa1750304fb2367fb7743e49e013405e88be (diff)
Merge branch 'master' of vparabola:~/abslibre-pre-mips64el
Conflicts: community/distcc/PKGBUILD community/lxtask/PKGBUILD community/ushare/PKGBUILD extra/catdoc/PKGBUILD extra/curl/PKGBUILD extra/ethstatus/PKGBUILD extra/ffcall/PKGBUILD extra/gimp-dbp/PKGBUILD extra/gimp-refocus/PKGBUILD extra/gstreamer0.10-ugly/PKGBUILD extra/metacity/PKGBUILD extra/pulseaudio/PKGBUILD extra/x2x/PKGBUILD libre/kernel26-libre/PKGBUILD multilib/lib32-libpulse/PKGBUILD multilib/wine/PKGBUILD testing/alex/PKGBUILD testing/ghc/PKGBUILD testing/haskell-cgi/PKGBUILD testing/haskell-deepseq/PKGBUILD testing/haskell-fgl/PKGBUILD testing/haskell-glut/PKGBUILD testing/haskell-haskell-src/PKGBUILD testing/haskell-html/PKGBUILD testing/haskell-http/PKGBUILD testing/haskell-hunit/PKGBUILD testing/haskell-mtl/PKGBUILD testing/haskell-network/PKGBUILD testing/haskell-opengl/PKGBUILD testing/haskell-parallel/PKGBUILD testing/haskell-parsec/PKGBUILD testing/haskell-platform/PKGBUILD testing/haskell-quickcheck/PKGBUILD testing/haskell-regex-base/PKGBUILD testing/haskell-regex-compat/PKGBUILD testing/haskell-regex-posix/PKGBUILD testing/haskell-stm/PKGBUILD testing/haskell-syb/PKGBUILD testing/haskell-text/PKGBUILD testing/haskell-transformers/PKGBUILD testing/haskell-xhtml/PKGBUILD testing/haskell-zlib/PKGBUILD testing/perl/ChangeLog testing/perl/PKGBUILD testing/perl/perlbin.sh testing/pidgin/PKGBUILD testing/spamassassin/PKGBUILD
Diffstat (limited to 'extra/gimp-dbp')
-rw-r--r--extra/gimp-dbp/PKGBUILD27
1 files changed, 13 insertions, 14 deletions
diff --git a/extra/gimp-dbp/PKGBUILD b/extra/gimp-dbp/PKGBUILD
index a51072156..9a5ac4635 100644
--- a/extra/gimp-dbp/PKGBUILD
+++ b/extra/gimp-dbp/PKGBUILD
@@ -1,26 +1,25 @@
-# $Id: PKGBUILD 37038 2009-04-30 05:11:53Z eric $
+# $Id: PKGBUILD 128499 2011-06-24 05:56:11Z eric $
# Maintainer: tobias <tobias@archlinux.org>
# Contributor: Tobias Kieslich <tobias@justdreams.de>
pkgname=gimp-dbp
-_srcname=dbp
pkgver=1.1.9
-pkgrel=1
+pkgrel=2
pkgdesc="David's batch processor for the GIMP"
arch=(i686 x86_64 'mips64el')
-license=('GPL')
-depends=('gimp>=2.4')
url="http://members.ozemail.com.au/~hodsond/dbp.html"
-source=(http://www.ozemail.com.au/~hodsond/${_srcname}Src-${pkgver//./-}.tgz)
+license=('GPL')
+depends=('gimp')
+source=(http://www.ozemail.com.au/~hodsond/dbpSrc-${pkgver//./-}.tgz)
md5sums=('1106625707798ab8ea1317ac6bece1c5')
build() {
- cd ${srcdir}/${_srcname}-${pkgver}
- # Tweak Makefile -- remove auto-install
- sed -i 's|^\tgimptool.*$||' Makefile || return 1
- sed -i "s|<string>|<cstring>|" op.h || return 1
- #sed -i '/DISABLE_DEPRECATED/d' Makefile
- # create gimp-2.0 plugin and install it
- make ${_srcname} || return 1
- install -Dsm755 ${_srcname} ${pkgdir}/usr/lib/gimp/2.0/plug-ins/${_srcname} || return 1
+ 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"
}