
Untitled
By: a guest on
May 6th, 2012 | syntax:
None | size: 0.72 KB | hits: 11 | expires: Never
#!/bin/sh
COMPILED_BY="tyru <tyru.exe@gmail.com>"
# Remove previous configure cache
if [ "$1" = "-f" ]; then
make distclean || rm src/auto/config.cache
fi
# configure & make
./configure \
--prefix=$HOME/local \
--with-features=huge \
--enable-multibyte \
--enable-fontset \
--disable-selinux \
--disable-xim \
--without-x \
--enable-gui=no \
--with-compiledby="$COMPILED_BY"
# ./configure \
# --prefix=$HOME/local \
# --with-features=huge \
# --enable-perlinterp \
# --enable-pythoninterp \
# --enable-rubyinterp \
# --enable-luainterp \
# --enable-gui=gtk2 \
# --enable-multibyte \
# --enable-fontset \
# --with-compiledby="$COMPILED_BY"
[ $? -eq 0 ] && make