From 0d6d81fb697d86fdca3b31629b48223045bbf8e1 Mon Sep 17 00:00:00 2001 From: Smittix Date: Thu, 15 Jan 2026 20:57:08 +0000 Subject: [PATCH] Add direwolf installation to setup.sh Adds direwolf (APRS decoder) installation for both Debian and macOS platforms to support the APRS mode functionality. Co-Authored-By: Claude Opus 4.5 --- setup.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.sh b/setup.sh index d14cfde..4ab006a 100755 --- a/setup.sh +++ b/setup.sh @@ -323,6 +323,9 @@ install_macos_packages() { ok "multimon-ng already installed" fi + progress "Installing direwolf (APRS decoder)" + (brew_install direwolf) || warn "direwolf not available via Homebrew" + progress "Installing ffmpeg" brew_install ffmpeg @@ -509,6 +512,9 @@ install_debian_packages() { progress "Installing multimon-ng" apt_install multimon-ng + progress "Installing direwolf (APRS decoder)" + apt_install direwolf || true + progress "Installing ffmpeg" apt_install ffmpeg