forked from Dencrash/DYOD_WS1920
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·84 lines (74 loc) · 3.04 KB
/
install.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/bash
if [[ -z $OPOSSUM_HEADLESS_SETUP ]]; then
read -p 'This script installs the dependencies of Hyrise. It might upgrade already installed packages. Continue? [y|n] ' -n 1 -r < /dev/tty
else
REPLY="y"
fi
echo
if echo $REPLY | grep -E '^[Yy]$' > /dev/null; then
unamestr=$(uname)
if [[ "$unamestr" == 'Darwin' ]]; then
if [ ! -d "/Applications/Xcode.app/" ]; then
echo "You need to install Xcode from the App Store before proceeding"
exit 1
fi
# Needed for proper building under macOS
xcode-select --install
brew --version 2>/dev/null || /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "Installing dependencies (this may take a while)..."
if brew update >/dev/null; then
# python2.7 is preinstalled on macOS
# check, for each programme individually with brew, whether it is already installed
# due to brew issues on MacOS after system upgrade
for formula in boost cmake pkg-config parallel; do
# if brew formula is installed
if brew ls --versions $formula > /dev/null; then
continue
fi
if ! brew install $formula; then
echo "Error during brew formula $formula installation."
exit 1
fi
done
if ! brew install llvm; then
echo "Error during llvm/clang installation."
exit 1
fi
if ! git submodule update --jobs 5 --init --recursive; then
echo "Error during installation."
exit 1
fi
else
echo "Error during installation."
exit 1
fi
elif [[ "$unamestr" == 'Linux' ]]; then
if [ -f /etc/lsb-release ] && cat /etc/lsb-release | grep DISTRIB_ID | grep Ubuntu >/dev/null; then
echo "Installing dependencies (this may take a while)..."
if sudo apt-get update >/dev/null; then
boostall=$(apt-cache search --names-only '^libboost1.[0-9]+-all-dev$' | sort | tail -n 1 | cut -f1 -d' ')
sudo apt-get install --no-install-recommends -y build-essential cmake gcovr parallel $boostall &
if ! git submodule update --jobs 5 --init --recursive; then
echo "Error during installation."
exit 1
fi
wait $!
apt=$?
if [ $apt -ne 0 ]; then
echo "Error during installation."
exit 1
fi
else
echo "Error during installation."
exit 1
fi
else
echo "Unsupported system. You might get the install script to work if you remove the '/etc/lsb-release' line, but you will be on your own."
exit 1
fi
else
echo "Unsupported operating system $unamestr."
exit 1
fi
fi
exit 0