#!/bin/sh
# Build vim from source code, with my usual options
set -e
set -x
./configure \
--enable-multibyte \
--with-x \
--enable-perlinterp=yes \
--enable-pythoninterp=yes \
--enable-python3interp=yes \
--enable-rubyinterp=yes \
--with-gnome \
--prefix=$HOME/pkg
make -j$(nproc)
make install