Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 6th, 2012  |  syntax: None  |  size: 0.72 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #!/bin/sh
  2. COMPILED_BY="tyru <tyru.exe@gmail.com>"
  3.  
  4. # Remove previous configure cache
  5. if [ "$1" = "-f" ]; then
  6.     make distclean || rm src/auto/config.cache
  7. fi
  8.  
  9. # configure & make
  10. ./configure \
  11.     --prefix=$HOME/local \
  12.     --with-features=huge \
  13.     --enable-multibyte \
  14.     --enable-fontset \
  15.     --disable-selinux \
  16.     --disable-xim \
  17.     --without-x \
  18.     --enable-gui=no \
  19.     --with-compiledby="$COMPILED_BY"
  20. # ./configure \
  21. #     --prefix=$HOME/local \
  22. #     --with-features=huge \
  23. #     --enable-perlinterp \
  24. #     --enable-pythoninterp \
  25. #     --enable-rubyinterp \
  26. #     --enable-luainterp \
  27. #     --enable-gui=gtk2 \
  28. #     --enable-multibyte \
  29. #     --enable-fontset \
  30. #     --with-compiledby="$COMPILED_BY"
  31. [ $? -eq 0 ] && make