blob: a2d097da944e4f0202d5e1f61e37dd7d9fead722 (
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
|
# Description: Logiciel pour le process d'images
# URL: http://www.graphicsmagick.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on : freetype, ghostscript, jasper, lcms, libxml2, libtiff, imagemagick
name=graphicsmagick
version=1.3.12
release=1
source=(http://downloads.sourceforge.net/sourceforge/$name/GraphicsMagick-$version.tar.bz2)
build () {
cd GraphicsMagick-$version
# préparation puis compilation
./configure --prefix=/usr \
--enable-shared \
--with-gs-font-dir=/usr/share/fonts/Type1
make
make DESTDIR=$PKG install
find $PKG -name perllocal.pod -delete
find $PKG -name .packlist -delete
}
|