[aur-general] GraphicsMagick PKGBUILD

Anton Leontiev bunder at t-25.ru
Sat Mar 27 11:41:46 CET 2010


Hello everyone!

I've updated GraphicsMagick PKGBUILD to the version 1.3.12. 
Can anyone check it and update the package in extra repository?

Also I have a question about perl bindings fot this package. Now they
are included in the package. Maybe it will be better to make PKGBUILD
that produces two packages: graphicsmagick and perl-graphics-magick? Or
this is completely unnecessary?

Thanks,

-- 
Leontiev Anton (bunder at t-25.ru)
-------------- next part --------------
# $Id: PKGBUILD 64619 2010-01-21 11:47:09Z ronald $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
# Contributor: Anton Leontiev <bunder at t-25.ru>

pkgname=graphicsmagick
pkgver=1.3.12
pkgrel=1
pkgdesc="Image processing system"
arch=('i686' 'x86_64')
url="http://www.graphicsmagick.org/"
license=('MIT')
makedepends=('perl')
depends=('bzip2' 'freetype2' 'ghostscript' 'jasper' 'lcms' 'libsm' 
	'libtiff' 'libwmf' 'libxml2' 'libtool')
options=('!libtool')
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/GraphicsMagick-$pkgver.tar.bz2)
md5sums=('55182f371f82d5f9367bce04e59bbf25')

build() {
  cd "${srcdir}/GraphicsMagick-$pkgver"

  ./configure --prefix=/usr --with-perl --enable-shared --with-gs-font-dir=/usr/share/fonts/Type1 || return 1
  make || return 1
  make DESTDIR="${pkgdir}" install || return 1

  # Install MIT license
  install -Dm644 "Copyright.txt" "${pkgdir}/usr/share/licenses/$pkgname/Copyright.txt" || return 1

  # Install perl bindings
  # The patching was introduced in order to build perl module without installing package itself and
  # not to introduce unnecessary path into LD_RUN_PATH
  cd PerlMagick || return 1
  sed -i -e "s:'LDDLFLAGS'  => \"\(.*\)\":'LDDLFLAGS'  => \"-L${pkgdir}/usr/lib \1\":" Makefile.PL
  perl Makefile.PL INSTALLDIRS=vendor PREFIX=/usr DESTDIR="${pkgdir}" || return 1
  sed -i -e "s/LDLOADLIBS =/LDLOADLIBS = -lGraphicsMagick/" Makefile
  make || return 1
  make install || return 1

  # Remove perllocal.pod and .packlist
  rm -rf "${pkgdir}/usr/lib/perl5/core_perl"
  rm "${pkgdir}/usr/lib/perl5/vendor_perl/auto/Graphics/Magick/.packlist"
}


More information about the aur-general mailing list