diff options
author | root <root@rshg054.dnsready.net> | 2012-01-01 23:14:56 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-01-01 23:14:56 +0000 |
commit | 29f5aa692a3fa3ff3e743a47d1c57f1cc0341809 (patch) | |
tree | 862d365a74545cb3e7616d14e3b660aae977e6f8 /extra/graphicsmagick/PKGBUILD | |
parent | 8654516201466a2dd3f3f05a6c0095e69c01715c (diff) |
Sun Jan 1 23:14:56 UTC 2012
Diffstat (limited to 'extra/graphicsmagick/PKGBUILD')
-rw-r--r-- | extra/graphicsmagick/PKGBUILD | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/extra/graphicsmagick/PKGBUILD b/extra/graphicsmagick/PKGBUILD index 70b39d568..47e8fee3c 100644 --- a/extra/graphicsmagick/PKGBUILD +++ b/extra/graphicsmagick/PKGBUILD @@ -1,26 +1,33 @@ -# $Id: PKGBUILD 130047 2011-07-01 15:56:21Z ronald $ +# $Id: PKGBUILD 145789 2012-01-01 01:38:15Z bisson $ # Maintainer: Ronald van Haren <ronald.archlinux.org> +# Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Anton Leontiev <bunder@t-25.ru> pkgname=graphicsmagick -pkgver=1.3.12 -pkgrel=2 -pkgdesc="Image processing system" +pkgver=1.3.13 +pkgrel=1 +pkgdesc='Image processing system' +url='http://www.graphicsmagick.org/' arch=('i686' 'x86_64') -url="http://www.graphicsmagick.org/" license=('MIT') makedepends=('perl') -depends=('bzip2' 'freetype2' 'ghostscript' 'jasper' 'lcms' 'libsm' - 'libtiff' 'libwmf' 'libxml2' 'libtool') +depends=('bzip2' 'freetype2' 'ghostscript' 'jasper' 'lcms2' 'xz' + 'libtiff' 'libwmf' 'libsm' 'libxml2' 'libltdl') options=('!libtool') -source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-history/1.3/GraphicsMagick-${pkgver}.tar.gz) -md5sums=('2cf6e2eea0d7af3019c9a89b81aad624') +source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz") +sha1sums=('b85b21785bb072fd795f7fc6ac902cffae4e96e6') build() { cd "${srcdir}/GraphicsMagick-$pkgver" - ./configure --prefix=/usr --with-perl --enable-shared --with-gs-font-dir=/usr/share/fonts/Type1 + ./configure \ + --prefix=/usr \ + --with-perl \ + --enable-shared \ + --disable-static \ + --with-gs-font-dir=/usr/share/fonts/Type1 \ + make } |