htg-public/vim/install.sh

45 lines
1.2 KiB
Bash
Raw Permalink Normal View History

#!/bin/bash
################################################################################
# file 'install.sh', created by motius, on 2017-10-28
################################################################################
GITDIR=${HOME}
VIMGIT=vim
GIT=/usr/bin/git
################################################################################
# go/rego
2018-11-04 19:45:09 +01:00
cd "${GITDIR}/.vim/" || exit 1;
if [ -d "vim" ]
then
2018-11-04 19:45:09 +01:00
cd ${VIMGIT} || exit 2;
${GIT} checkout master || exit 3;
${GIT} pull || exit 4;
else
2018-11-04 19:45:09 +01:00
${GIT} clone https://github.com/vim/vim ${VIMGIT} || exit 5;
cd ${VIMGIT} || exit 6;
fi
################################################################################
# clean
2018-11-04 19:45:09 +01:00
${GIT} clean -fdx || exit 6;
################################################################################
# compile and install
2018-11-04 19:45:09 +01:00
./configure --enable-python3interp=yes \
--enable-cscope \
--enable-gnome-check \
--with-x \
--prefix="${GITDIR}"/.vim/${VIMGIT}/install
make -j
make install
################################################################################
# EOF 'install.sh'
################################################################################