From 24a1850f47edfe3d4813aa5e5200f20b2cd99dfd Mon Sep 17 00:00:00 2001 From: Aditya Alok Date: Mon, 11 Apr 2022 20:49:05 +0530 Subject: [PATCH] feat(setup-ubuntu.sh): install `xxd` package, required by `cava` Signed-off-by: Aditya Alok --- scripts/setup-ubuntu.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index 92a006e93..998234f46 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -225,6 +225,9 @@ PACKAGES+=" qemu-user-static" # Required by picolisp (and maybe a few others in future) PACKAGES+=" llvm-12" +# Required by cava +PACKAGES+=" xxd" + # Do not require sudo if already running as root. if [ "$(id -u)" = "0" ]; then SUDO=""