feat(setup-ubuntu.sh): install xxd package, required by cava

Signed-off-by: Aditya Alok <dev.aditya.alok@gmail.com>
This commit is contained in:
Aditya Alok 2022-04-11 20:49:05 +05:30
parent 9b6f952ff8
commit 24a1850f47
No known key found for this signature in database
GPG Key ID: 345AE134142077D8

View File

@ -225,6 +225,9 @@ PACKAGES+=" qemu-user-static"
# Required by picolisp (and maybe a few others in future) # Required by picolisp (and maybe a few others in future)
PACKAGES+=" llvm-12" PACKAGES+=" llvm-12"
# Required by cava
PACKAGES+=" xxd"
# Do not require sudo if already running as root. # Do not require sudo if already running as root.
if [ "$(id -u)" = "0" ]; then if [ "$(id -u)" = "0" ]; then
SUDO="" SUDO=""