blob: 1fe6722cf16330a9154dd9ba14ea1b81bec52af9 (
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.6
release=1
_version=6.5.8-6
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
}
|