blob: bf251689db66c69ed64163b40aeca6af8ae0a7e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
|