summaryrefslogtreecommitdiffstats
path: root/packaging/macos/build_toolset.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
commitcca66b9ec4e494c1d919bff0f71a820d8afab1fa (patch)
tree146f39ded1c938019e1ed42d30923c2ac9e86789 /packaging/macos/build_toolset.sh
parentInitial commit. (diff)
downloadinkscape-cca66b9ec4e494c1d919bff0f71a820d8afab1fa.tar.xz
inkscape-cca66b9ec4e494c1d919bff0f71a820d8afab1fa.zip
Adding upstream version 1.2.2.upstream/1.2.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'packaging/macos/build_toolset.sh')
-rwxr-xr-xpackaging/macos/build_toolset.sh34
1 files changed, 34 insertions, 0 deletions
diff --git a/packaging/macos/build_toolset.sh b/packaging/macos/build_toolset.sh
new file mode 100755
index 0000000..bf25168
--- /dev/null
+++ b/packaging/macos/build_toolset.sh
@@ -0,0 +1,34 @@
+#!/usr/bin/env bash
+#
+# SPDX-FileCopyrightText: 2021 René de Hesselle <dehesselle@web.de>
+#
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+### description ################################################################
+
+# Create our JHBuild-based toolset with all dependencies to be able to
+# compile Inkscape.
+
+### shellcheck #################################################################
+
+# Nothing here.
+
+### dependencies ###############################################################
+
+# Nothing here.
+
+### variables ##################################################################
+
+SELF_DIR=$(dirname "${BASH_SOURCE[0]}")
+
+### functions ##################################################################
+
+# Nothing here.
+
+### main #######################################################################
+
+set -e
+
+for script in "$SELF_DIR"/1??-*.sh; do
+ $script
+done