-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfigure.bash
executable file
·93 lines (84 loc) · 2.52 KB
/
configure.bash
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/usr/bin/env bash
# This program and the accompanying materials are made available under the
# terms of the MIT license (X11 license) which accompanies this distribution.
# author: C. Bürger
# BEWARE: This script must be sourced. It expects one variables to be set and sets four variables:
# in) configuration_to_parse: Configuration file to parse
# set) configuration_directory: Directory containing the configuration file to parse
# set) supported_systems: Associative array of KNOWN Scheme systems supported according to the parsed configuration
# set) required_libraries: Array of paths to the libraries required according to the parsed configuration
# set) required_sources: Array of paths to the source files according to the parsed configuration
set -e
set -o pipefail
shopt -s inherit_errexit
configure_bash_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [[ ! -v "configuration_to_parse" ]] || [ ! -f "$configuration_to_parse" ]
then
echo " !!! ERROR: Non-existent or no configuration to parse set !!!" >&2
exit 64
fi
parsing_mode=initial
configuration_directory="$( cd "$( dirname "$configuration_to_parse" )" && pwd )"
supported_systems_array=()
required_libraries=()
required_sources=()
while IFS='' read -r line
do
case $parsing_mode in
initial)
if [ "$line" = "@systems:" ]
then
parsing_mode=systems
continue
fi
mapfile -t supported_systems_array < <( "$configure_bash_dir/list-scheme-systems.bash" -k || kill -13 $$ )
if [ "$line" = "@libraries:" ]
then
parsing_mode=libraries
continue
fi
if [ "$line" = "@sources:" ]
then
parsing_mode=sources
continue
fi
parsing_mode=sources
required_sources+=( "$configuration_directory/$line" )
;;
systems)
if [ "$line" = "@libraries:" ]
then
parsing_mode=libraries
continue
fi
if [ "$line" = "@sources:" ]
then
parsing_mode=sources
continue
fi
supported_systems_array+=( "$line" )
continue
;;
libraries)
if [ "$line" = "@sources:" ]
then
parsing_mode=sources
continue
fi
required_libraries+=( "$( cd "$configuration_directory/$line" && pwd )" )
;;
sources)
required_sources+=( "$configuration_directory/$line" )
;;
esac
done < "$configuration_to_parse"
declare -A supported_systems
supported_systems=() # Set separately from declaration since script may be sourced several times for varying configurations!
for s in "${supported_systems_array[@]}"
do
# shellcheck disable=SC2034
supported_systems["$s"]="$s"
done
unset supported_systems_array
unset parsing_mode
unset configure_bash_dir