opt/imagemagick/Pkgfile

33 lines
849 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Image manipulation wizard
2021-02-01 17:57:51 +01:00
# URL: http://www.imagemagick.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: bzip2 chrpath libtool xz zlib
# Optional: fontconfig lcms2 libpng libtiff libxml2 openjpeg2 pango xorg-libxt
2006-02-23 16:26:10 +01:00
name=imagemagick
2024-01-08 11:16:16 +01:00
version=7.1.1-26
2019-06-24 12:57:41 +02:00
release=1
2022-06-20 18:24:56 +02:00
source=(https://imagemagick.org/archive/releases/ImageMagick-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build () {
2021-02-01 17:57:51 +01:00
cd ImageMagick-$version
2009-01-23 17:13:58 +01:00
2021-02-01 17:57:51 +01:00
./configure \
--prefix=/usr \
--enable-shared \
--with-modules \
--with-perl=yes
2009-01-23 17:13:58 +01:00
2021-02-01 17:57:51 +01:00
make
make DESTDIR=$PKG install
2009-01-23 17:13:58 +01:00
2021-02-01 17:57:51 +01:00
# remove bogus workdir rpath from perl modules
find $PKG/usr/lib/perl5 -name '*.so' -exec chrpath -d {} +
2021-02-01 17:57:51 +01:00
# cleanup
rm -r $PKG/usr/share/doc
2022-06-20 18:24:56 +02:00
find $PKG -regex '.*\(ChangeLog\|LICENSE\|NEWS\.txt\)$' -delete
2021-02-01 17:57:51 +01:00
find $PKG -regex '.*\(\.packlist\|perllocal.pod\|\.bs\)$' -delete
find $PKG -type d -empty -delete
2006-02-23 16:26:10 +01:00
}