blob: b2018fe96feb1e82e92d5a89af31de13c72ae9d5 (
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
|
# Description: Logiciel pour le process d'images
# URL: http://www.graphicsmagick.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on : freetype2, ghostscript, jasper, lcms, libxml2, libtiff
name=graphicsmagick
version=1.3.7
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
}
|