From 4a8abb5900250db6b0d9ac41f1d03002a7689443 Mon Sep 17 00:00:00 2001 From: Dj Merrill Date: Thu, 25 Apr 2024 20:01:45 -0400 Subject: [PATCH] Added Ubuntu 24.04 LTS support to the install script --- tools/Linux/install-freedata-linux.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tools/Linux/install-freedata-linux.sh b/tools/Linux/install-freedata-linux.sh index a98ebda6..c90168d2 100755 --- a/tools/Linux/install-freedata-linux.sh +++ b/tools/Linux/install-freedata-linux.sh @@ -54,6 +54,22 @@ case $osname in ;; + "Ubuntu") + case $osversion in + "24.04 LTS (Noble Numbat)") + sudo apt install --upgrade -y libhamlib-utils libhamlib-dev libhamlib4 fonts-noto-color-emoji git build-essential cmake npm nodejs python3 portaudio19-dev python3-pyaudio python3-pip python3-colorama python3-venv + ;; + + *) + echo "*************************************************************************" + echo "This version of Linux is not yet supported by this script." + echo $osname $osversion + echo "*************************************************************************" + exit 1 + ;; + esac + ;; + *) echo "*************************************************************************" echo "This version of Linux is not yet supported by this script."