1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-18 17:10:55 +02:00
audacity/linux/packages/arch/dependencies.sh
2021-08-12 16:15:29 +03:00

44 lines
484 B
Bash
Executable File

#!/usr/bin/env bash
build_deps=(
gcc
git
cmake
python-pip
)
deps=(
zlib
alsa-lib
gtk2
expat
libid3tag
libogg
libvorbis
flac
lame
twolame
libmad
libsndfile
jack
lilv
lv2
portaudio
portsmf
portmidi
suil
vamp-plugin-sdk
libsoxr
soundtouch
# sbsms is not available on arch
# sbsms
libpng
libjpeg-turbo
libsm
ffmpeg
)
pacman -Syu --noconfirm \
"${build_deps[@]}" \
"${deps[@]}"