mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 23:29:41 +02:00
64 lines
1.5 KiB
Bash
Executable File
64 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
((${BASH_VERSION%%.*} >= 4)) || echo >&2 "$0: Warning: Using ancient Bash version ${BASH_VERSION}."
|
|
|
|
set -euxo pipefail
|
|
|
|
if [[ "${OSTYPE}" == msys* ]]; then # Windows
|
|
|
|
# Python packages
|
|
pip_packages=(
|
|
conan
|
|
)
|
|
pip3 install "${pip_packages[@]}"
|
|
|
|
elif [[ "${OSTYPE}" == darwin* ]]; then # macOS
|
|
|
|
# Homebrew packages
|
|
brew_packages=(
|
|
bash # macOS ships with Bash v3 for licensing reasons so upgrade it now
|
|
conan
|
|
)
|
|
brew install "${brew_packages[@]}"
|
|
|
|
else # Linux & others
|
|
|
|
if ! which sudo; then
|
|
function sudo() { "$@"; } # no-op sudo for use in Docker images
|
|
fi
|
|
|
|
# Distribution packages
|
|
if which apt-get; then
|
|
apt_packages=(
|
|
# Docker image
|
|
file
|
|
g++
|
|
git
|
|
wget
|
|
|
|
# GitHub Actions
|
|
libasound2-dev
|
|
libgtk2.0-dev
|
|
gettext
|
|
python3-pip
|
|
)
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y --no-install-recommends "${apt_packages[@]}"
|
|
sudo apt-get remove -y ccache
|
|
else
|
|
echo >&2 "$0: Error: You don't have a recognized package manager installed."
|
|
exit 1
|
|
fi
|
|
|
|
# Python packages
|
|
pip_packages=(
|
|
conan
|
|
)
|
|
|
|
which cmake || pip_packages+=( cmake ) # get latest CMake when inside Docker image
|
|
|
|
pip3 install wheel setuptools # need these first to install other packages (e.g. conan)
|
|
pip3 install "${pip_packages[@]}"
|
|
|
|
fi
|