Skip to content

Instantly share code, notes, and snippets.

@defHLT
Last active December 15, 2015 14:28
Show Gist options
  • Save defHLT/5274228 to your computer and use it in GitHub Desktop.
Save defHLT/5274228 to your computer and use it in GitHub Desktop.
# 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