contrib/graphicsmagick/Pkgfile

28 lines
655 B
Plaintext
Raw Normal View History

2021-01-31 07:17:33 +01:00
# Description: Image processing system
# URL: http://www.graphicsmagick.org
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: brotli freetype jasper lcms2 libwebp
name=graphicsmagick
2022-06-01 09:53:06 +02:00
version=1.3.38
2021-01-31 07:17:33 +01:00
release=1
source=(https://downloads.sourceforge.net/project/$name/$name/$version/GraphicsMagick-$version.tar.xz)
build() {
cd GraphicsMagick-$version
./configure \
--prefix=/usr \
--enable-shared \
--with-modules \
--with-perl \
--with-gs-font-dir='/usr/share/fonts/X11/Type1' \
--with-quantum-depth=16 \
--with-threads
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc $PKG/usr/share/GraphicsMagick-$version
}