Created
December 12, 2011 01:33
-
-
Save dgalling/1464096 to your computer and use it in GitHub Desktop.
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
LEADER='==>' | |
echo $LEADER 'Fetching vim from hg...' | |
hg clone https://vim.googlecode.com/hg/ vim | |
cd vim/src | |
echo $LEADER 'Configuring...' | |
./configure --enable-rubyinterp --enable-multibyte --enable-gui=no --disable-netbeans --with-compiledby=Ian\ Rahimi --enable-pythoninterp --disable-gtktest | |
echo $LEADER 'Building...' | |
make | |
echo $LEADER 'Installing... (requires root priveleges)' | |
sudo make install | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment