Created
July 17, 2012 00:33
-
-
Save partkyle/3126137 to your computer and use it in GitHub Desktop.
VM Setup
This file contains hidden or 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
#!/bin/sh | |
if [ -z "$VIM_VERSION"]; then | |
VIM_VERSION=v7-3-603 | |
fi | |
hg clone https://vim.googlecode.com/hg/ vim | |
cd vim | |
hg pull | |
hg update | |
hg co v7-3-603 | |
./configure --without-x --with-features=huge --with-tlib=ncurses --enable-multibyte --with-mac-arch=x86_64 --enable-pythoninterp --enable-rubyinterp --enable-tclinterp --enable-perlinterp --prefix="/usr/local/stow/vim-$VIM_VERSION" | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment