summaryrefslogtreecommitdiff
path: root/extra/gimp-dbp/PKGBUILD
blob: a51072156d68d1b1771511b5983df93f78538257 (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
25
26
# $Id: PKGBUILD 37038 2009-04-30 05:11:53Z eric $
# Maintainer: tobias <tobias@archlinux.org>
# Contributor: Tobias Kieslich <tobias@justdreams.de>

pkgname=gimp-dbp
_srcname=dbp
pkgver=1.1.9
pkgrel=1
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)
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
}