From d5f6b464b200b243fe8bb652b5ed9e2d9f8d474c Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Sat, 9 May 2020 18:37:55 +0200 Subject: [PATCH] setup-ubuntu: add packages needed by science and game packages --- scripts/setup-ubuntu.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index cbd4402b92..917ffaa58b 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -146,6 +146,13 @@ PACKAGES+=" libgdk-pixbuf2.0-dev" PACKAGES+=" python3-xcbgen" PACKAGES+=" xfonts-utils" +# Needed by packages in science repository +PACKAGES+=" sqlite3" +PACKAGES+=" protobuf-c-compiler" + +# Needed by packages in game repository +PACKAGES+=" python3-yaml" + # Do not require sudo if already running as root. if [ "$(id -u)" = "0" ]; then SUDO=""