9cc9f893a4
Assorted bug fixes, enhancements, and build cleanups, full list here: http://www.graphicsmagick.org/NEWS.html#december-26-2020 Additionally, PerlMagick is built but tests are disabled since there is currently an installation order issue with the tests. Specifically, the PerlMagick tests require GraphicsMagick to be installed for the tests to pass but the tests are run as part of the main suite. See: https://sourceforge.net/p/graphicsmagick/bugs/580/ for more details.
50 lines
1.8 KiB
Bash
50 lines
1.8 KiB
Bash
# Template file for 'GraphicsMagick'
|
|
pkgname=GraphicsMagick
|
|
version=1.3.36
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-quantum-depth=16 --with-gs-font-dir=/usr/share/fonts/Type1
|
|
--with-modules --with-perl --without-jp2 --enable-shared --disable-static"
|
|
hostmakedepends="pkg-config perl"
|
|
# libraries listed in GraphicsMagick++-config --libs
|
|
_develdepends="lcms2-devel freetype-devel libXext-devel libSM-devel libICE-devel
|
|
libX11-devel liblzma-devel bzip2-devel zlib-devel libltdl-devel libgomp-devel"
|
|
makedepends="perl libjpeg-turbo-devel libpng-devel tiff-devel libwebp-devel
|
|
fontconfig-devel libXt-devel libxml2-devel libwmf-devel ghostscript-devel
|
|
${_develdepends}"
|
|
depends="ghostscript"
|
|
short_desc="GraphicsMagick Image Processing System"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="http://www.graphicsmagick.org/"
|
|
changelog="http://www.graphicsmagick.org/NEWS.html"
|
|
distfiles="${SOURCEFORGE_SITE}/graphicsmagick/graphicsmagick/${version}/${pkgname}-${version}.tar.gz"
|
|
checksum=1e6723c48c4abbb31197fadf8396b2d579d97e197123edc70a4f057f0533d563
|
|
keep_libtool_archives=yes
|
|
|
|
post_install() {
|
|
vlicense Copyright.txt LICENSE
|
|
}
|
|
|
|
libgraphicsmagick_package() {
|
|
short_desc="GraphicsMagick image manipulation libraries"
|
|
pkg_install() {
|
|
vmove "usr/lib/libGraphicsMagick*.so.*"
|
|
vmove "usr/lib/GraphicsMagick*"
|
|
vmove "usr/share/GraphicsMagick*"
|
|
}
|
|
}
|
|
libgraphicsmagick-devel_package() {
|
|
short_desc="GraphicsMagick image manipulation libraries - development files"
|
|
depends="libgraphicsmagick>=${version}_${revision} ${_develdepends}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/doc
|
|
vmove "usr/bin/*-config"
|
|
vmove "usr/lib/*.so"
|
|
vmove "usr/lib/*.la"
|
|
vmove "usr/share/man/man1/*-config.1"
|
|
vcopy ${wrksrc}/PerlMagick usr/share/doc/GraphicsMagick*/
|
|
}
|
|
}
|