From 4e98356c414f72e7201c791f24ffa70566655686 Mon Sep 17 00:00:00 2001 From: matt335672 <30179339+matt335672@users.noreply.github.com> Date: Mon, 13 Feb 2023 10:20:30 +0000 Subject: [PATCH] Support Debian bookworm in wrapped build script --- scripts/install_pulseaudio_sources_apt.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/install_pulseaudio_sources_apt.sh b/scripts/install_pulseaudio_sources_apt.sh index 5e0aef8..2572a15 100755 --- a/scripts/install_pulseaudio_sources_apt.sh +++ b/scripts/install_pulseaudio_sources_apt.sh @@ -118,6 +118,14 @@ if [ ! -d "$PULSE_DIR" ]; then Kali-2022*) sudo apt-get install -y doxygen ;; + Debian-n/a) + # Debian testing build + case "$codename" in + bookworm) + sudo apt-get install -y doxygen + ;; + esac + ;; esac cd "$(dirname $PULSE_DIR)"