Date: Monday, January 13, 2020 @ 10:19:31
  Author: bisson
Revision: 373425

archrelease: copy trunk to extra-x86_64

Added:
  graphicsmagick/repos/extra-x86_64/PKGBUILD
    (from rev 373424, graphicsmagick/trunk/PKGBUILD)
Deleted:
  graphicsmagick/repos/extra-x86_64/PKGBUILD

----------+
 PKGBUILD |  128 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2020-01-13 10:19:12 UTC (rev 373424)
+++ PKGBUILD    2020-01-13 10:19:31 UTC (rev 373425)
@@ -1,64 +0,0 @@
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Maintainer: Gaetan Bisson <[email protected]>
-# Contributor: Jaroslav Lichtblau <[email protected]>
-# Contributor: Anton Leontiev <[email protected]>
-
-pkgname=graphicsmagick
-pkgver=1.3.33
-pkgrel=2
-pkgdesc='Image processing system'
-url='http://www.graphicsmagick.org/'
-arch=('x86_64')
-license=('MIT')
-optdepends=('jasper: jp2 module'
-            'libwmf: wmf module'
-            'libxml2: msl, svg, url modules'
-            'ghostscript: pdf, ps modules')
-makedepends=('perl' 'jasper' 'libwmf' 'libxml2')
-depends=('freetype2' 'libxext' 'libsm' 'lcms2' 'libltdl' 'bzip2' 'xz'
-         'libpng' 'libtiff' 'libwebp')
-source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz";)
-sha256sums=('130cb330a633580b5124eba5c125bbcbc484298423a97b9bed37ccd50d6dc778')
-
-options=('!emptydirs' 'libtool')
-
-prepare() {
-       cd "${srcdir}/GraphicsMagick-${pkgver}"
-       sed -e "s:freetype_config='':freetype_config='/usr/bin/pkg-config 
freetype2':g" -i configure
-}
-
-build() {
-       cd "${srcdir}/GraphicsMagick-${pkgver}"
-       ./configure \
-               --prefix=/usr \
-               --enable-shared \
-               --with-modules \
-               --with-perl \
-               --with-gs-font-dir=/usr/share/fonts/Type1 \
-               --with-quantum-depth=16 \
-               --with-threads
-       make
-}
-
-package() {
-       cd "${srcdir}/GraphicsMagick-${pkgver}"
-
-       make DESTDIR="${pkgdir}" install
-
-       # Install MIT license
-       install -Dm644 "Copyright.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/Copyright.txt"
-
-       # 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
-       sed -i -e "s:'LDDLFLAGS'  => \"\(.*\)\":'LDDLFLAGS'  => 
\"-L${pkgdir}/usr/lib \1\":" Makefile.PL
-       perl Makefile.PL INSTALLDIRS=vendor PREFIX=/usr DESTDIR="${pkgdir}"
-       sed -i -e "s/LDLOADLIBS =/LDLOADLIBS = -lGraphicsMagick/" Makefile
-       make
-       make install
-
-       # Remove perllocal.pod and .packlist
-       rm -r "${pkgdir}"/usr/lib/perl5/*/core_perl
-       rm 
"${pkgdir}"/usr/lib/perl5/*/vendor_perl/auto/Graphics/Magick/.packlist
-}

Copied: graphicsmagick/repos/extra-x86_64/PKGBUILD (from rev 373424, 
graphicsmagick/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2020-01-13 10:19:31 UTC (rev 373425)
@@ -0,0 +1,64 @@
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Maintainer: Gaetan Bisson <[email protected]>
+# Contributor: Jaroslav Lichtblau <[email protected]>
+# Contributor: Anton Leontiev <[email protected]>
+
+pkgname=graphicsmagick
+pkgver=1.3.34
+pkgrel=1
+pkgdesc='Image processing system'
+url='http://www.graphicsmagick.org/'
+arch=('x86_64')
+license=('MIT')
+optdepends=('jasper: jp2 module'
+            'libwmf: wmf module'
+            'libxml2: msl, svg, url modules'
+            'ghostscript: pdf, ps modules')
+makedepends=('perl' 'jasper' 'libwmf' 'libxml2')
+depends=('freetype2' 'libxext' 'libsm' 'lcms2' 'libltdl' 'bzip2' 'xz'
+         'libpng' 'libtiff' 'libwebp')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/GraphicsMagick-${pkgver}.tar.xz";)
+sha256sums=('df009d5173ed0d6a0c6457234256c5a8aeaace782afa1cbab015d5a12bd4f7a4')
+
+options=('!emptydirs' 'libtool')
+
+prepare() {
+       cd "${srcdir}/GraphicsMagick-${pkgver}"
+       sed -e "s:freetype_config='':freetype_config='/usr/bin/pkg-config 
freetype2':g" -i configure
+}
+
+build() {
+       cd "${srcdir}/GraphicsMagick-${pkgver}"
+       ./configure \
+               --prefix=/usr \
+               --enable-shared \
+               --with-modules \
+               --with-perl \
+               --with-gs-font-dir=/usr/share/fonts/Type1 \
+               --with-quantum-depth=16 \
+               --with-threads
+       make
+}
+
+package() {
+       cd "${srcdir}/GraphicsMagick-${pkgver}"
+
+       make DESTDIR="${pkgdir}" install
+
+       # Install MIT license
+       install -Dm644 "Copyright.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/Copyright.txt"
+
+       # 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
+       sed -i -e "s:'LDDLFLAGS'  => \"\(.*\)\":'LDDLFLAGS'  => 
\"-L${pkgdir}/usr/lib \1\":" Makefile.PL
+       perl Makefile.PL INSTALLDIRS=vendor PREFIX=/usr DESTDIR="${pkgdir}"
+       sed -i -e "s/LDLOADLIBS =/LDLOADLIBS = -lGraphicsMagick/" Makefile
+       make
+       make install
+
+       # Remove perllocal.pod and .packlist
+       rm -r "${pkgdir}"/usr/lib/perl5/*/core_perl
+       rm 
"${pkgdir}"/usr/lib/perl5/*/vendor_perl/auto/Graphics/Magick/.packlist
+}

Reply via email to