blob: 781a7f5168e32b6b2493aae5ce558d3c370e59e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Description: Manipulateur d'image en ligne de commande
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# URL: http://www.imagemagick.org/
# Depends on: freetype, ghostscript, lcms, libgsf, giflib, libxml2, openexr
name=imagemagick
version=6.5.8.8
release=1
_version=6.5.8-8
source=(ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-${_version}.tar.bz2)
build () {
cd ImageMagick-*
./configure --prefix=/usr \
--enable-static=no \
--enable-shared \
--with-perl \
--with-x \
--with-frozenpaths=no \
--without-modules \
--disable-openmp
make || make
make DESTDIR=$PKG install
rm $PKG/usr/lib/perl5/5.10.1/i686-linux-thread-multi/perllocal.pod
}
|