Skip to content

Instantly share code, notes, and snippets.

@casallas
Last active October 11, 2015 18:57
Show Gist options
  • Save casallas/3903921 to your computer and use it in GitHub Desktop.
Save casallas/3903921 to your computer and use it in GitHub Desktop.
vr-jugglua install via homebrew
#!/bin/bash
# Install homebrew (taken from http://brew.sh/)
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Add brew to your path
echo "# Prepend homebrew bins to your PATH" >> ~/.bash_profile
echo "export PATH=/usr/local/sbin:/usr/local/bin:/usr/local/Library/Contributions/examples:$PATH" >> ~/.bash_profile
# Tap casallas/vr
brew tap casallas/vr
# Update homebrew just in case
brew update
# Install vr-jugglua
brew install vr-jugglua
# Link NavTestbed.app to /Applications
ln -s `brew --prefix vr-jugglua`/NavTestbed.app /Applications
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment