mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 22:30:04 +08:00
64 lines
1.6 KiB
Bash
Executable File
64 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Fail on unset variables and command errors
|
|
set -ue -o pipefail
|
|
|
|
# Prevent commands misbehaving due to locale differences
|
|
export LC_ALL=C
|
|
|
|
install_vim() {
|
|
local URL=https://github.com/vim/vim
|
|
local tag=$1
|
|
local ext=$([[ $tag == "HEAD" ]] && echo "" || echo "-b $tag")
|
|
local tmp="$(mktemp -d)"
|
|
local out="${DEPS}/_vim/$tag"
|
|
mkdir -p $out
|
|
git clone --depth 1 --single-branch $ext $URL $tmp
|
|
cd $tmp
|
|
./configure \
|
|
--with-features=huge \
|
|
--enable-pythoninterp \
|
|
--enable-python3interp \
|
|
--enable-luainterp \
|
|
--prefix=${out}
|
|
make
|
|
make install
|
|
}
|
|
|
|
install_nvim() {
|
|
local URL=https://github.com/neovim/neovim
|
|
local tag=$1
|
|
local ext=$([[ $tag == "HEAD" ]] && echo "" || echo "-b $tag")
|
|
local tmp="$(mktemp -d)"
|
|
local out="${DEPS}/_neovim/$tag"
|
|
mkdir -p $out
|
|
local ncpu=$(awk '/^processor/{n+=1}END{print n}' /proc/cpuinfo)
|
|
git clone --depth 1 --single-branch $ext $URL $tmp
|
|
cd $tmp
|
|
sed -i '30d' ./third-party/cmake/BuildLibvterm.cmake
|
|
make deps
|
|
make -j$ncpu \
|
|
CMAKE_BUILD_TYPE=Release \
|
|
CMAKE_EXTRA_FLAGS="-DTRAVIS_CI_BUILD=ON -DCMAKE_INSTALL_PREFIX:PATH=$out"
|
|
make install
|
|
pip3 install --upgrade "pip < 21.0"
|
|
pip3 install pynvim
|
|
}
|
|
|
|
install() {
|
|
local vim=$1
|
|
local tag=$2
|
|
|
|
if [[ -d "${DEPS}/_$vim/$tag/bin" ]]; then
|
|
echo "Use a cached version '$HOME/_$vim/$tag'."
|
|
return
|
|
fi
|
|
if [[ $vim == "nvim" ]]; then
|
|
install_nvim $tag
|
|
else
|
|
install_vim $tag
|
|
fi
|
|
}
|
|
|
|
install $@
|