forked from eth-sri/psi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.sh
executable file
·37 lines (31 loc) · 992 Bytes
/
dependencies.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
#!/bin/bash
if [ ! -d dmd2 ]; then
VERSION="2.102.2"
if [[ "$OSTYPE" == "linux-gnu" ]]; then
FILE="dmd.$VERSION.linux.zip"
SUM1="5e22d624323e0c17b5e73a1784bbdb67 $FILE"
MD5="md5sum"
elif [[ "$OSTYPE" == "darwin"* ]]; then
FILE="dmd.$VERSION.osx.zip"
SUM1="MD5 ($FILE) = ac868f5c9d8aa4dfeb52149d34655935"
MD5="md5"
else
>&2 echo "This script does not support your platform at this time."
>&2 echo "Try to obtain the dmd d compiler manually from:"
>&2 echo "https://dlang.org"
>&2 echo "Pull requests for improved build script welcome."
exit 1;
fi
ZIPLINK="http://downloads.dlang.org/releases/2.x/$VERSION/$FILE"
wget -nc $ZIPLINK
SUM2=`$MD5 $FILE`
if [[ $SUM1 != $SUM2 ]]; then
echo "ERROR: md5 sum mismatch"
echo "EXPECTED: $SUM1"
echo "GOT : $SUM2"
else
unzip $FILE
fi
fi
git submodule init
git submodule update