mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
fbb27a101f
libtool, autoconf, automake and perl are no longer dependencies of neovim and doesn't need to be installed in CI anymore. The dependencies and the commit that removed them as dependencies are the following: libtool:b05100a9ea
perl:20a932cb72
autoconf+automake:e23c5fda0a
11 lines
267 B
Bash
Executable File
11 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
|
|
os=$(uname -s)
|
|
if [[ $os == Linux ]]; then
|
|
sudo apt-get update
|
|
sudo apt-get install -y build-essential cmake curl gettext locales-all ninja-build pkg-config unzip "$@"
|
|
elif [[ $os == Darwin ]]; then
|
|
brew update --quiet
|
|
brew install ninja "$@"
|
|
fi
|