diff options
Diffstat (limited to 'packaging/macos/150-jhbuild-inkdeps.sh')
| -rwxr-xr-x | packaging/macos/150-jhbuild-inkdeps.sh | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/packaging/macos/150-jhbuild-inkdeps.sh b/packaging/macos/150-jhbuild-inkdeps.sh new file mode 100755 index 000000000..8078a425a --- /dev/null +++ b/packaging/macos/150-jhbuild-inkdeps.sh @@ -0,0 +1,65 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: GPL-2.0-or-later +# +# This file is part of the build pipeline for Inkscape on macOS. +# +# ### 150-jhbuild-inkdeps.sh ### +# Install additional dependencies into our jhbuild environment required for +# building Inkscape. + +### load settings and functions ################################################ + +SELF_DIR=$(cd $(dirname "$0"); pwd -P) +for script in $SELF_DIR/0??-*.sh; do source $script; done + +### install GNU Scientific Library ############################################# + +get_source $URL_GSL +configure_make_makeinstall + +### install additional GNOME libraries ######################################### + +# libsoup - GNOME http client/server library +# adwaita-icon-theme - icons used by Inkscape/GTK + +jhbuild build adwaita-icon-theme libsoup + +### install Garbage Collector for C/C++ ######################################## + +get_source $URL_GC +configure_make_makeinstall + +### install GNOME Docking Library ############################################## + +get_source $URL_GDL +jhbuild run ./autogen.sh +configure_make_makeinstall + +### install boost ############################################################## + +get_source $URL_BOOST +jhbuild run ./bootstrap.sh --prefix=$OPT_DIR +jhbuild run ./b2 -j$CORES install + +### install OpenJPEG ########################################################### + +get_source $URL_OPENJPEG +cmake_make_makeinstall + +### install Poppler ############################################################ + +get_source $URL_POPPLER +cmake_make_makeinstall -DENABLE_UNSTABLE_API_ABI_HEADERS=ON + +### install gtk-mac-bundler #################################################### + +get_source $URL_GTK_MAC_BUNDLER +make install + +### install double-conversion ################################################## + +# Required by lib2geom. + +get_source $URL_DOUBLE_CONVERSION +cmake_make_makeinstall + |
