Last active
December 15, 2015 14:28
-
-
Save defHLT/5274228 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
# Get the compile-dependencies of vim | |
sudo apt-get build-dep vim | |
# If you haven't got mercurial, checkinstall | |
sudo apt-get install mercurial checkinstall | |
# Get the source | |
hg clone https://vim.googlecode.com/hg/ vim | |
# Compile it | |
cd vim | |
./configure \ | |
--enable-luainterp=dynamic \ | |
--enable-rubyinterp=dynamic \ | |
--enable-perlinterp=dynamic \ | |
--enable-pythoninterp=dynamic \ | |
--enable-cscope \ | |
--enable-gui=auto \ | |
--enable-gtk2-check \ | |
--enable-gnome-check \ | |
--with-features=huge \ | |
--with-x \ | |
--with-compiledby="https://gist.github.com/1c3/5274228" | |
# --with-python-config-dir=/usr/lib/python2.7/config | |
make | |
# Generate and install debian package | |
sudo checkinstall -D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment