summaryrefslogtreecommitdiffstats
path: root/imagemagick/Pkgfile
blob: 4191a776b2cb0d7a9c5dd10371df0e830efc03ae (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
28
29
# 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
# Run on: freetype,ghostscript,lcms,libgsf,giflib,libxml2,openexr

name=imagemagick
version=6.7.7.6
release=1
_version=6.7.7-6
source=(http://image_magick.veidrodis.com/image_magick/ImageMagick-${_version}.tar.xz)

build () {
	cd ImageMagick-*
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--enable-static=no \
		--enable-shared \
		--with-perl \
		--with-x \
		--with-frozenpaths=no \
		--without-modules \
		--disable-openmp
	make
	make DESTDIR=$PKG install
	find  $PKG -name perllocal.pod -exec rm {} \;
	rm -r $PKG/usr/share/doc
}