mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 21:25:04 -07:00
20 lines
228 B
Bash
Executable File
20 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PACKAGES=(
|
|
autoconf
|
|
automake
|
|
build-essential
|
|
cmake
|
|
cpanminus
|
|
curl
|
|
gettext
|
|
libtool-bin
|
|
locales-all
|
|
ninja-build
|
|
pkg-config
|
|
unzip
|
|
)
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install -y "${PACKAGES[@]}"
|