qmk-dactyl-manuform-a/util/macos_install.sh

32 lines
723 B
Bash
Raw Normal View History

#!/bin/bash
util_dir=$(dirname "$0")
2019-10-28 23:13:07 +01:00
if ! brew --version >/dev/null 2>&1; then
echo "Error! Homebrew not installed or broken!"
echo -n "Would you like to install homebrew now? [y/n] "
2019-10-28 23:13:07 +01:00
while read -r ANSWER; do
case $ANSWER in
2019-10-28 23:13:07 +01:00
y | Y)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
break
;;
2019-10-28 23:13:07 +01:00
n | N)
exit 1
;;
2019-10-28 23:13:07 +01:00
*)
echo -n "Would you like to install homebrew now? [y/n] "
;;
esac
done
fi
2020-04-21 02:35:40 +02:00
# All macOS dependencies are managed in the homebrew package:
# https://github.com/qmk/homebrew-qmk
brew update
2020-04-21 02:35:40 +02:00
brew install qmk/qmk/qmk
2019-06-05 19:53:11 +02:00
brew link --force avr-gcc@8
brew link --force arm-gcc-bin@8
2019-10-28 23:13:07 +01:00
pip3 install -r "${util_dir}/../requirements.txt"