-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·66 lines (46 loc) · 1.15 KB
/
build.sh
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
#!/bin/bash
# Reference: https://github.com/janyou/ANTLR-Swift-Target/blob/master/ManuallyBuild.md
# Setup
pushd . > /dev/null
cd `dirname $0`
scriptRoot=`pwd`
popd > /dev/null
# Include
. "$scriptRoot/include/git"
. "$scriptRoot/include/integration"
. "$scriptRoot/include/sources"
. "$scriptRoot/include/dependencies"
. "$scriptRoot/include/build"
. "$scriptRoot/include/install"
# Options
gitFolder="/tmp/$(uuidgen)"
rebuild=false
# Functions
parseArguments() {
while [ $# -gt 0 ]
do
case $1 in
--rebuild) rebuild true; shift 1;;
--gitFolder) [ $# -gt 1 ] && gitFolder=$2; shift 2;;
--installFolder) [ $# -gt 1 ] && installFolder=$2; shift 2;;
*) echo "Unexpected argument: $1"; exit 1; shift;;
esac
done
}
buildDependingOnOptions() {
if $rebuild
then
build
else
buildIfNeeded
fi
}
execute() {
mkdir -p "$gitFolder"
gitAntlrFolder="$gitFolder/antlr4"
gitTargetFolder="$gitFolder/target"
setupDependencies && getSources && integrateTargetInAntlr && buildDependingOnOptions && installIfNeeded
}
# Main
parseArguments $@
execute