mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
878 B
Bash
26 lines
878 B
Bash
# $Id: PKGBUILD 37040 2009-04-30 05:16:37Z 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)
|
|
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
|
|
}
|