Created
April 9, 2013 03:20
-
-
Save matsubo/5342696 to your computer and use it in GitHub Desktop.
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 | |
sudo apt-get update | |
sudo apt-get install mercurial libncurses5-dev -y | |
src_dir=~/archive/ | |
if [ ! -d $src_dir ];then | |
mkdir $src_dir | |
fi | |
cd $src_dir | |
hg clone https://vim.googlecode.com/hg/ vim | |
cd vim/src | |
./configure --enable-multibyte --enable-xim --enable-fontset --disable-selinux --with-features=huge --enable-pythoninterp --with-python-config-dir=/usr/local/lib/python2.7/config | |
make | |
sudo make install | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment