opt/imagemagick/Pkgfile

29 lines
826 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Image manipulation wizard
# URL: http://www.imagemagick.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Packager: danm, maol, jaeger, sip
# Depends on: util-linux lcms2 pango xorg-libxt
2006-02-23 16:26:10 +01:00
name=imagemagick
2018-01-23 13:23:24 +01:00
version=7.0.7-22
2016-05-05 13:35:00 +02:00
release=1
2016-05-09 23:33:19 +02:00
source=(ftp://ftp.imagemagick.org/pub/ImageMagick/releases/ImageMagick-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build () {
2010-11-22 17:52:07 +01:00
cd ImageMagick-$version
2009-01-23 17:13:58 +01:00
./configure --prefix=/usr \
--enable-shared \
--with-modules \
--with-perl=yes \
--with-lcms=no --with-lcms2=yes
2009-01-23 17:13:58 +01:00
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2009-01-23 17:13:58 +01:00
rm -r $PKG/usr/share/doc
find $PKG -regex '.*\(ChangeLog\|LICENSE\|NEWS\.txt\)$' -delete
find $PKG -regex '.*\(\.packlist\|perllocal.pod\|\.bs\)$' -delete
2009-01-23 17:13:58 +01:00
find $PKG -type d -empty -delete
2006-02-23 16:26:10 +01:00
}