mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:47:41 +08:00
47 lines
1.7 KiB
Bash
47 lines
1.7 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
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}/${pkgname}-history/1.3/GraphicsMagick-${pkgver}.tar.gz)
|
|
md5sums=('2cf6e2eea0d7af3019c9a89b81aad624')
|
|
|
|
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"
|
|
} |