From cc06bee73e2bac20acc3273cb8957e1163a18aa2 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Sat, 13 Jul 2019 17:08:57 +0300 Subject: [PATCH] docker image: install libdbus-1-dev Required by host-build if dbus-glib. https://github.com/termux/termux-packages/pull/4046. --- scripts/setup-ubuntu.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index e0f567f7c..ea9ba6ebc 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -16,6 +16,7 @@ PACKAGES+=" git" # Used by the neovim build. PACKAGES+=" gperf" # Used by the fontconfig build. PACKAGES+=" help2man" PACKAGES+=" intltool" # Used by qalc build. +PACKAGES+=" libdbus-1-dev" # Used by dbus-glib build. PACKAGES+=" libglib2.0-dev" # Provides 'glib-genmarshal' which the glib build uses. PACKAGES+=" libtool-bin" PACKAGES+=" libncurses5-dev" # Used by mariadb for host build part.