From 20e65683e94472f4a8253de024cd004ab9277221 Mon Sep 17 00:00:00 2001 From: Leonid Plyushch Date: Thu, 23 Jan 2020 16:26:10 +0200 Subject: [PATCH] docker image: install erlang-nox, itstool, libgdk-pixbuf2.0-dev, xfonts-utils More tools to build packages in unstable & x11 repositories. --- scripts/setup-ubuntu.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index f62a038a6..195b79ce5 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -99,11 +99,17 @@ PACKAGES+=" zlib1g-dev:i386" # So we don't build llvm for build. PACKAGES+=" llvm-8-tools" +# Needed by packages in unstable repository. +PACKAGES+=" erlang-nox" + # Needed by packages in X11 repository. PACKAGES+=" gnome-common" PACKAGES+=" gobject-introspection" PACKAGES+=" gtk-3-examples" PACKAGES+=" gtk-doc-tools" +PACKAGES+=" itstool" +PACKAGES+=" libgdk-pixbuf2.0-dev" +PACKAGES+=" xfonts-utils" # Do not require sudo if already running as root. if [ "$(id -u)" = "0" ]; then