* hopefully this isn't slow

* upgrade

* try this

* apparently this is the right way to do this
pull/19832/head
Adeeb Shihadeh 4 years ago committed by GitHub
parent c03a95f7f9
commit 14f9700f6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 31
      tools/mac_setup.sh

@ -1,25 +1,26 @@
#!/bin/bash -e #!/bin/bash -e
# Install brew if required. # Install brew if required
if [[ $(command -v brew) == "" ]]; then if [[ $(command -v brew) == "" ]]; then
echo "Installing Hombrew" echo "Installing Hombrew"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
fi fi
brew install capnp \ brew bundle --file=- <<-EOS
coreutils \ brew "capnp"
eigen \ brew "coreutils"
ffmpeg \ brew "eigen"
glfw \ brew "ffmpeg"
libarchive \ brew "glfw"
libusb \ brew "libarchive"
libtool \ brew "libusb"
llvm \ brew "libtool"
openssl \ brew "llvm"
pyenv \ brew "openssl"
qt5 \ brew "pyenv"
zeromq brew "qt5"
brew "zeromq"
EOS
if [[ $SHELL == "/bin/zsh" ]]; then if [[ $SHELL == "/bin/zsh" ]]; then
RC_FILE="$HOME/.zshrc" RC_FILE="$HOME/.zshrc"

Loading…
Cancel
Save