contrib/graphicsmagick/Pkgfile

32 lines
871 B
Plaintext
Raw Normal View History

2021-01-31 07:17:33 +01:00
# Description: Image processing system
# URL: http://www.graphicsmagick.org
# Maintainer: John McQuah, jmcquah at disroot dot org
2021-01-31 07:17:33 +01:00
# Depends on: brotli freetype jasper lcms2 libwebp
# Optional: libpng libjpeg-turbo libtiff libxml2 dav1d graphviz libheif libde265
2021-01-31 07:17:33 +01:00
name=graphicsmagick
2023-01-15 10:21:32 +01:00
version=1.3.40
release=2
source=(https://downloads.sourceforge.net/project/$name/$name/$version/GraphicsMagick-$version.tar.xz jpegturbo3-api-fixes.patch)
2021-01-31 07:17:33 +01:00
build() {
cd GraphicsMagick-$version
2021-01-31 07:17:33 +01:00
patch -p1 -i ../jpegturbo3-api-fixes.patch
2021-01-31 07:17:33 +01:00
./configure \
--prefix=/usr \
--enable-shared \
--with-modules \
--with-perl \
--with-gs-font-dir='/usr/share/fonts/X11/Type1' \
--with-quantum-depth=16 \
--with-threads
2021-01-31 07:17:33 +01:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc $PKG/usr/share/GraphicsMagick-$version
find $PKG/usr/lib -name "*.la" -delete
2021-01-31 07:17:33 +01:00
}