-
Notifications
You must be signed in to change notification settings - Fork 23
/
install_mac.sh
executable file
·41 lines (26 loc) · 1.08 KB
/
install_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
#!/bin/bash
set -euo pipefail
if [[ $(uname) != "Darwin" ]]; then
echo "Error: This script can only be run on macOS."
exit 1
fi
source lib/install_shared.sh
prepare_config
checkout_submodules
setup_python
build_containers
print_message "Installing needed binaries for building ..."
if ! command -v stdbuf &> /dev/null; then
print_message "Trying to install 'coreutils' via homebew. If this fails (because you do not have brew or use another package manager), please install it manually ..."
brew install coreutils
fi
print_message "Building C libs"
make -C "lib/c"
build_binaries
print_message "Adding powermetrics to sudoers file"
check_file_permissions "/usr/bin/powermetrics"
check_file_permissions "/usr/bin/killall"
echo "ALL ALL=(ALL) NOPASSWD:/usr/bin/powermetrics" | sudo tee /etc/sudoers.d/green_coding_powermetrics
echo "ALL ALL=(ALL) NOPASSWD:/usr/bin/killall powermetrics" | sudo tee /etc/sudoers.d/green_coding_kill_powermetrics
echo "ALL ALL=(ALL) NOPASSWD:/usr/bin/killall -9 powermetrics" | sudo tee /etc/sudoers.d/green_coding_kill_powermetrics_sigkill
finalize