Skip to content

Instantly share code, notes, and snippets.

@nishigori
Forked from tyru/build
Last active September 26, 2015 16:47
Show Gist options
  • Save nishigori/1127857 to your computer and use it in GitHub Desktop.
Save nishigori/1127857 to your computer and use it in GitHub Desktop.
Vim's build script.
#!/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="<nishigori.tak@gmail.com>"
[ $? -eq 0 ] && make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment