mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-29 15:09:30 +02:00
43 lines
470 B
Bash
Executable File
43 lines
470 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
|
|
portsmf
|
|
portmidi
|
|
suil
|
|
vamp-plugin-sdk
|
|
libsoxr
|
|
soundtouch
|
|
# sbsms is not available on arch
|
|
# sbsms
|
|
libpng
|
|
libjpeg-turbo
|
|
libsm
|
|
ffmpeg
|
|
)
|
|
|
|
pacman -S --noconfirm \
|
|
"${build_deps[@]}" \
|
|
"${deps[@]}"
|