mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-25 06:06:21 +03:00
e7b002cc96
branch
46 lines
915 B
Bash
Executable File
46 lines
915 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
CODE_SIGN=$1
|
|
|
|
echo "### Building VimR target"
|
|
|
|
# Build NeoVim
|
|
# 0. Delete previously built things
|
|
# 1. Build normally to get the full runtime folder and copy it to the neovim's project root
|
|
# 2. Delete the build folder to re-configure
|
|
# 3. Build libnvim
|
|
pushd neovim
|
|
|
|
ln -f -s ../local.mk .
|
|
|
|
rm -rf build
|
|
make clean
|
|
|
|
echo "### Building nvim to get the runtime folder"
|
|
make CMAKE_FLAGS="-DCUSTOM_UI=0 -DCMAKE_INSTALL_PREFIX=/tmp/nvim" install
|
|
cp -r /tmp/nvim/share/nvim/runtime .
|
|
|
|
rm -rf build
|
|
make clean
|
|
|
|
echo "### Building libnvim"
|
|
make libnvim
|
|
|
|
popd
|
|
|
|
echo "### Updating carthage"
|
|
carthage update --platform osx
|
|
|
|
echo "### Xcodebuilding"
|
|
|
|
if [ "${CODE_SIGN}" = true ] ; then
|
|
xcodebuild CODE_SIGN_IDENTITY="Developer ID Application: Tae Won Ha (H96Q2NKTQH)" -configuration Release -target VimR
|
|
else
|
|
xcodebuild -configuration Release -target VimR
|
|
fi
|
|
|
|
echo "### Built VimR target"
|