48 lines
2.1 KiB
Bash
48 lines
2.1 KiB
Bash
# Template file for 'inkscape'
|
|
pkgname=inkscape
|
|
version=1.3.2
|
|
revision=2
|
|
build_style=cmake
|
|
make_check_target="check"
|
|
hostmakedepends="automake gettext glib-devel intltool libgraphicsmagick-devel
|
|
libtool perl-XML-Parser pkg-config which python3-Cython ragel"
|
|
makedepends="aspell-devel cairomm-devel double-conversion-devel gc-devel
|
|
gdl-devel gsl-devel gspell-devel gtkmm-devel gtkspell3-devel harfbuzz-devel
|
|
hunspell-devel libatomic_ops-devel libcdr-devel libgomp-devel
|
|
libvisio-devel libwpd-devel libwpd-devel libwpg-devel libxslt-devel pango-devel
|
|
poppler-devel poppler-glib-devel potrace-devel gtest-devel gtksourceview4-devel
|
|
boost-devel lib2geom-devel popt-devel readline-devel libxml2-devel"
|
|
depends="desktop-file-utils hicolor-icon-theme python3-Pillow python3-appdirs
|
|
python3-cssselect python3-lxml python3-numpy python3-requests python3-scour"
|
|
checkdepends="$depends GraphicsMagick ImageMagick cantarell-fonts gtest-devel"
|
|
short_desc="Vector-based drawing program"
|
|
maintainer="Alex Lohr <alexthkloss@web.de>"
|
|
license="GPL-2.0-only, LGPL-2.1-or-later"
|
|
homepage="https://inkscape.org/"
|
|
distfiles="https://media.inkscape.org/dl/resources/file/inkscape-${version}.tar.xz"
|
|
checksum=dbd1844dc443fe5e10d3e9a887144e5fb7223852fff191cfb5ef7adeab0e086b
|
|
python_version=3
|
|
# some tests still fail on musl: https://gitlab.com/inkscape/inkscape/-/issues/2241
|
|
make_check=no
|
|
|
|
if [ -n "$XBPS_CHECK_PKGS" ]; then
|
|
configure_args+=" -DBUILD_TESTING=ON"
|
|
else
|
|
configure_args+=" -DBUILD_TESTING=OFF"
|
|
fi
|
|
|
|
post_patch() {
|
|
if [ "$XBPS_TARGET_LIBC" = musl ]; then
|
|
# disable errors for missing sentinels in glib variadic functions,
|
|
# since inkscape uses NULL instead of nullptr
|
|
vsed -e "/-Werror=format/d" -i CMakeScripts/DefineDependsandFlags.cmake
|
|
fi
|
|
# disable glyph tests that fail due to different hinting
|
|
vsed -e \
|
|
"s/add_subdirectory(rendering_tests)/# & - skipped due to hinting issues/" \
|
|
-i testfiles/CMakeLists.txt
|
|
# https://gitlab.com/inkscape/inkscape/-/commit/73c83ef9b8dc3e3dfd0fe24c75356623e7390ebd
|
|
: >src/io/http.cpp 2>src/io/http.h
|
|
vsed -i '/libsoup-2.4/d' CMakeScripts/DefineDependsandFlags.cmake
|
|
}
|