#!/usr/bin/env bash # # SPDX-FileCopyrightText: 2021 René de Hesselle # # 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