From dda84e74bcea4679a5ab0ce0c3b7adddb2961d4c Mon Sep 17 00:00:00 2001 From: lwvmobile Date: Fri, 1 Dec 2023 09:21:50 -0500 Subject: [PATCH] Fix Audio_Work Debian Installer Script; --- download-and-install.sh | 2 +- examples/Install_Notes.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/download-and-install.sh b/download-and-install.sh index 3555cb2..8950051 100644 --- a/download-and-install.sh +++ b/download-and-install.sh @@ -13,7 +13,7 @@ ANSWER=$(printf "$ANSWER"|tr '[:upper:]' '[:lower:]') if [ "$ANSWER" = "y" ]; then sudo apt update sudo apt install libpulse-dev pavucontrol libsndfile1-dev libfftw3-dev liblapack-dev socat libusb-1.0-0-dev libncurses5 libncurses5-dev rtl-sdr librtlsdr-dev libusb-1.0-0-dev cmake git wget make build-essential libitpp-dev libncursesw5-dev libcodec2-dev - chkitpp=$(sudo apt search libitpp-dev 2>&1|grep -ci "installed") + chkitpp=$(sudo apt list libitpp-dev 2>&1|grep -ci "installed") if [ "$chkitpp" -lt "1" ];then printf "\nFor some reason, ITPP did NOT install!\nYou may have to manually install it.\n\n" read -p "Press Enter to exit..." x diff --git a/examples/Install_Notes.md b/examples/Install_Notes.md index b23ab8c..64d6d28 100644 --- a/examples/Install_Notes.md +++ b/examples/Install_Notes.md @@ -7,7 +7,7 @@ Using the included download-and-install.sh should make for a simple and painless If you need all dependencies build and installed first (only on Debian/Ubuntu/Mint/Pi), run: ``` -wget https://raw.githubusercontent.com/lwvmobile/dsd-fme/main/download-and-install.sh +wget https://raw.githubusercontent.com/lwvmobile/dsd-fme/audio_work/download-and-install.sh chmod +x download-and-install.sh ./download-and-install.sh ``` @@ -25,7 +25,7 @@ chmod +x download-and-install-Arch.sh If you have dependencies already installed, please run this instead: ``` -wget https://raw.githubusercontent.com/lwvmobile/dsd-fme/main/download-and-install-nodeps.sh +wget https://raw.githubusercontent.com/lwvmobile/dsd-fme/audio_work/download-and-install-nodeps.sh chmod +x download-and-install-nodeps.sh ./download-and-install-nodeps.sh ```