-
-
Save nishigori/1127857 to your computer and use it in GitHub Desktop.
Vim's build script.
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/sh | |
# Remove previous configure cache | |
if [ "$1" = "-f" ]; then | |
make distclean || rm src/auto/config.cache | |
fi | |
# configure & make | |
./configure \ | |
--prefix=/usr/local \ | |
--with-features=huge \ | |
--enable-multibyte \ | |
--enable-luainterp \ | |
--enable-rubyinterp \ | |
--enable-perlinterp \ | |
--enable-pythoninterp \ | |
--enable-python3interp \ | |
--with-python3-config-dir=/usr/bin/python3 \ | |
--enable-ulainterp \ | |
--enable-tclinterp \ | |
--enable-cscope \ | |
--enable-fontset \ | |
--enable-gui=auto \ | |
--enable-gnome-check \ | |
--without-x \ | |
--enable-gpm \ | |
--disable-darwin \ | |
--disable-netbeans \ | |
--disable-selinux \ | |
--with-compiledby="<[email protected]>" | |
[ $? -eq 0 ] && make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment