-
Notifications
You must be signed in to change notification settings - Fork 71
/
setup-mac.sh
88 lines (76 loc) · 2.38 KB
/
setup-mac.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
85
86
87
88
#!/bin/bash
log() {
case "$1" in
"error")
c=1
s="-"
;;
"warning")
c=3
s="!"
;;
"success")
c=2
s="+"
;;
*)
c=6
s="*"
;;
esac
echo -e "\033[3${c}m[$(date +'%Y-%m-%d~%H:%M')|$s]\033[0m $2"
}
log "success" "Setting up \"Figaro\""
ORIGINAL_PATH=`pwd`
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
cd $SCRIPT_DIR
log "info" "Checking requirements ... "
log "info" "Checking python/pip installation ... "
/usr/bin/env python3 --version >/dev/null
if [[ $? -ne 0 ]]; then
log "error" "No python3 installation could be found!"
exit 1
fi
log "success" "Functioning python3 setup detected!"
/usr/bin/env python3 -m pip --version >/dev/null
if [[ $? -ne 0 ]]; then
log "error" "No pip3 installation could be found!"
exit 1
fi
log "success" "Functioning pip3 setup detected!"
log "info" "Checking node/npm installation ... "
node --version >/dev/null
if [[ $? -ne 0 ]]; then
log "error" "No node setup could be found!"
exit 1
fi
log "success" "Functional node installation found!"
npm --version >/dev/null
if [[ $? -ne 0 ]]; then
log "error" "No npm installation found!"
exit 1
fi
log "success" "Functioning npm setup found!"
log "info" "Installing python requirements ... "
/usr/bin/env python3 -m pip install -r ./requirements-unix.txt
log "info" "Installing node requirements (electron part) ... "
cd lib/gui/
npm i
log "info" "Installing node requirements (web/gatsby part) ... "
cd web/
npm i
log "info" "Building the GUI (web/gatsby part)"
npm run build
cd ../../../
log "warning" "If you want to use \"Figaro\" with programs such as Discord, you will have to install a loopback adapter."
read -p "Do you want this setup script to download and install the https://vb-audio.com/Cable/ loopback device now? " yn
yn=`echo -n $yn | tr '[:upper:]' '[:lower:]'`
if [[ $yn == y* ]]; then
curl "https://download.vb-audio.com/Download_MAC/VBCable_MACDriver_Pack107.dmg" > "$HOME/Downloads/VBCABLE_MACDriver_Pack.dmg"
open "$HOME/Downloads"
log "warning" "Simply install the loopback cable from \"VBCABLE_MACDriver_Pack.dmg\" now ... "
fi
log "success" "Finished setting up \"Figaro\""
log "info" "If you want to use the GUI, just run"
log "info" "./gui.sh"
cd $ORIGINAL_PATH