Created
June 13, 2014 17:25
-
-
Save bolasblack/4c91454bc9100513f820 to your computer and use it in GitHub Desktop.
build lua support vim on ubuntu
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
#!/bin/bash -e | |
sudo apt-get install libncurses5-dev python-dev ruby-dev lua5.2 liblua5.2-dev | |
./configure \ | |
--enable-fontset \ | |
--disable-xsmp \ | |
--enable-cscope \ | |
--enable-multibyte \ | |
--enable-python3interp \ | |
--enable-rubyinterp=dynamic \ | |
--enable-pythoninterp \ | |
--enable-perlinterp=dynamic \ | |
--enable-luainterp \ | |
--with-lua-prefix=/usr \ | |
--with-features=huge \ | |
--with-compiledby=c4605 \ | |
--with-modified-by=c4605 | |
make -j2 | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment