2006-02-23 15:26:10 +00:00
|
|
|
# Description: Image manipulation wizard
|
2009-11-23 17:40:21 +01:00
|
|
|
# URL: http://www.imagemagick.org/
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
# Packager: danm, maol, jaeger, sip
|
2014-08-20 12:26:43 +02:00
|
|
|
# Depends on: util-linux lcms2 pango xorg-libxt
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=imagemagick
|
2018-06-12 19:33:36 +02:00
|
|
|
version=7.0.7-39
|
2018-02-19 12:20:52 +01:00
|
|
|
release=1
|
2018-06-13 09:41:14 +02:00
|
|
|
source=(https://www.imagemagick.org/download/releases/ImageMagick-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
2010-11-22 17:52:07 +01:00
|
|
|
cd ImageMagick-$version
|
2009-01-23 17:13:58 +01:00
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
2009-11-23 17:40:21 +01:00
|
|
|
--enable-shared \
|
2016-01-14 13:48:21 +01:00
|
|
|
--with-modules \
|
2014-08-20 12:26:43 +02:00
|
|
|
--with-perl=yes \
|
2018-02-10 23:25:44 -05:00
|
|
|
--with-lcms=yes
|
2009-01-23 17:13:58 +01:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
2009-11-23 17:40:21 +01:00
|
|
|
make DESTDIR=$PKG install
|
2009-01-23 17:13:58 +01:00
|
|
|
|
2018-02-10 23:25:44 -05:00
|
|
|
# rebuild perl binding .so files to remove bogus workdir rpath
|
|
|
|
cd PerlMagick
|
|
|
|
find . -name '*.so' -delete
|
|
|
|
sed -i 's,LD_RUN_PATH="$(LD_RUN_PATH)" ,,' quantum/Makefile
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
2009-11-23 17:40:21 +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 15:26:10 +00:00
|
|
|
}
|