stash
This commit is contained in:
parent
918dd9e0ae
commit
02187e81f8
|
@ -7,3 +7,4 @@
|
|||
# wait for <return> with read
|
||||
xterm -geometry '15x5+0+0' -fa 'Monospace' -fs 14 -e 'grabc && read'
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -32,3 +32,4 @@ ${ELF}: ${OBJ}
|
|||
# cleanall
|
||||
clean:
|
||||
${RM} -f ${ELF} ${OBJ} ${ASM}
|
||||
|
||||
|
|
|
@ -69,6 +69,7 @@ ff02::2 ip6-allrouters
|
|||
0.0.0.0 methodevegas.com
|
||||
0.0.0.0 hotchatdate.com
|
||||
0.0.0.0 trackvoluum.com
|
||||
0.0.0.0 baise-la-ce-soir.com
|
||||
|
||||
0.0.0.0 dingit.tv
|
||||
#0.0.0.0 ulinkths.com
|
||||
|
@ -92,6 +93,7 @@ ff02::2 ip6-allrouters
|
|||
0.0.0.0 0004.pics
|
||||
0.0.0.0 1nimo.com
|
||||
0.0.0.0 grnail.com
|
||||
0.0.0.0 comphelp.org
|
||||
|
||||
|
||||
|
||||
|
@ -30924,6 +30926,12 @@ ff02::2 ip6-allrouters
|
|||
0.0.0.0 zeusclicks.com
|
||||
0.0.0.0 zintext.com
|
||||
0.0.0.0 zmedia.com
|
||||
0.0.0.0 iqc-lpconsultancy.com
|
||||
0.0.0.0 easycrypto.biz
|
||||
0.0.0.0 hitcpm.com
|
||||
|
||||
|
||||
|
||||
::1 0koryu0.easter.ne.jp
|
||||
::1 109-204-26-16.netconnexion.managedbroadband.co.uk
|
||||
::1 11.lamarianella.info
|
||||
|
|
|
@ -10,26 +10,31 @@ GIT=/usr/bin/git
|
|||
################################################################################
|
||||
# go/rego
|
||||
|
||||
cd "${GITDIR}/.vim/" || exit 42;
|
||||
cd "${GITDIR}/.vim/" || exit 1;
|
||||
|
||||
if [ -d "vim" ]
|
||||
then
|
||||
cd ${VIMGIT} || exit 42;
|
||||
${GIT} pull
|
||||
cd ${VIMGIT} || exit 2;
|
||||
${GIT} checkout master || exit 3;
|
||||
${GIT} pull || exit 4;
|
||||
else
|
||||
${GIT} clone https://github.com/vim/vim ${VIMGIT}
|
||||
cd ${VIMGIT} || exit 42;
|
||||
${GIT} clone https://github.com/vim/vim ${VIMGIT} || exit 5;
|
||||
cd ${VIMGIT} || exit 6;
|
||||
fi
|
||||
|
||||
################################################################################
|
||||
# clean
|
||||
|
||||
${GIT} clean -fdx
|
||||
${GIT} clean -fdx || exit 6;
|
||||
|
||||
################################################################################
|
||||
# compile and install
|
||||
|
||||
./configure --enable-python3interp=yes --prefix="${GITDIR}"/.vim/${VIMGIT}/install
|
||||
./configure --enable-python3interp=yes \
|
||||
--enable-cscope \
|
||||
--enable-gnome-check \
|
||||
--with-x \
|
||||
--prefix="${GITDIR}"/.vim/${VIMGIT}/install
|
||||
make -j
|
||||
make install
|
||||
|
||||
|
|
Loading…
Reference in New Issue