blob: 4727b5d08d3521e9160544de85efe49024d6a272 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
os=$(uname -s)
if [[ $os == Linux ]]; then
sudo apt-get update
sudo apt-get install -y autoconf automake build-essential cmake curl gettext libtool-bin locales-all ninja-build pkg-config unzip "$@"
elif [[ $os == Darwin ]]; then
brew update --quiet
brew install automake ninja "$@"
fi
|