Created
April 22, 2011 16:28
-
-
Save gorenje/936991 to your computer and use it in GitHub Desktop.
installing a local version of cappuccino for testing a new version of cappuccino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## create directory for a new install of narwhal | |
mkdir ~/tmp | |
cd ~/tmp | |
git clone git://github.com/280north/narwhal.git | |
cd narwhal/ | |
## add the new narwhal to the front of the path | |
export PATH=$(pwd)/bin:$PATH | |
## install necessary tools for building cappuccino | |
tusk install jake | |
tusk install browserjs | |
tusk install shrinksafe | |
## clone cappuccino and install it into the local narwhal installation | |
cd ~/gitrepos | |
git clone https://github.com/280north/cappuccino.git | |
cd cappuccino | |
jake install | |
## needs to be installed after cappuccino (objective-j dependency) | |
tusk install https://github.com/280north/OJTest/zipball/latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment