blob: 5eab89628999b9200de52e7eb1c6e32a8b29c430 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/zsh
source ../util
version="v0.10.2"
git clone -b $version https://github.com/neovim/neovim.git $target/neovim
sudo dnf install -y cmake gettext lua lua-libs
cd $HOME/neovim
make CMAKE_BUILD_TYPE=RelWithDebInfo
make CMAKE_INSTALL_PREFIX=$target/bin install
|