From 0d5702ca69312aa2ffd44936807daa44a64223a2 Mon Sep 17 00:00:00 2001 From: "Thomas A. F. Thorne" Date: Thu, 7 Feb 2019 09:31:08 +0000 Subject: [PATCH] Update apt-get install List Copy the current set of required packages from https://github.com/debauchee/barrier/wiki/Building-on-Linux sudo apt install git cmake make xorg-dev g++ libcurl4-openssl-dev \ libavahi-compat-libdnssd-dev libssl-dev libx11-dev \ libqt4-dev qtbase5-dev This is following a failure of: E: Unable to locate package libxtst-dev From the AppVeyor build. The Travis build is debian, the AppVeyor one is Ubuntu 18.04 at present. --- .appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 812f5d42..b0771d92 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -26,10 +26,10 @@ install: - echo The Install has started... - sh: echo ... for Linux - cmd: echo ... for Windows - - sh: sudo apt-get update && sudo apt-get install \ - libxtst-dev - qtdeclarative5-dev - libavahi-compat-libdnssd-dev + - sh: sudo apt-get update && sudo apt-get install + git cmake make xorg-dev g++ libcurl4-openssl-dev \ + libavahi-compat-libdnssd-dev libssl-dev libx11-dev \ + libqt4-dev qtbase5-dev ##### Build Phase #####