From 2773b4c2716b9d481a2babec4b212aa9fa76dedd Mon Sep 17 00:00:00 2001 From: Nicholas Fasching <91689117+njfdev@users.noreply.github.com> Date: Wed, 17 Jul 2024 14:28:31 -0400 Subject: [PATCH] Add Install Command for Ubuntu Build Script --- build_scripts/nrsc5.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build_scripts/nrsc5.sh b/build_scripts/nrsc5.sh index 7dbd078..981ea5b 100755 --- a/build_scripts/nrsc5.sh +++ b/build_scripts/nrsc5.sh @@ -1,8 +1,8 @@ # Note: FAAD2 is turned off because it causes issues in GitHub Actions and is not needed -# if pacman exists, install the dependencies -if [ -x "$(command -v pacman)" ]; then -pacman -S --noconfirm autoconf automake git gzip make mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake mingw-w64-x86_64-libtool patch tar xz libtool cmake gcc +# if apt exists, install the dependencies +if [ -x "$(command -v apt-get)" ]; then +sudo apt-get install autoconf automake git gzip make patch tar xz libtool cmake gcc fi mkdir build