aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2019-05-15 07:37:43 +0200
committerAhmad Fatoum <ahmad@a3f.at>2019-05-15 08:13:25 +0200
commite7995c483d520d4384e8de6aa4b5664d31adaecb (patch)
tree6aa1eafd8a4edd260951627261687bbcf0eff9ae
parent0467f32cc112b189b2ca61bce68bcf32f9c5e86d (diff)
downloadraylib-e7995c483d520d4384e8de6aa4b5664d31adaecb.tar.gz
raylib-e7995c483d520d4384e8de6aa4b5664d31adaecb.zip
.travis.yml: update wayland dependency ECM version
extra-cmake-modules 5.38.0a is no longer hosted at the specified kernel.org link. Use the occasion to move on to 5.58. Because newer ECM debian packages have the control.tar file xz-compressed, we need to update dpkg as well on trusty. For more information, see https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/1730627
-rw-r--r--.travis.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 54cc8bf9..ea319702 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -120,9 +120,12 @@ before_install:
script:
- cd build
- - if test -n "$WAYLAND";
- then wget https://mirrors.kernel.org/ubuntu/pool/universe/e/extra-cmake-modules/extra-cmake-modules_5.38.0a-0ubuntu1_amd64.deb;
- sudo dpkg -i extra-cmake-modules_5.38.0a-0ubuntu1_amd64.deb;
+ - if test -n "$WAYLAND"; then
+ wget https://mirrors.edge.kernel.org/ubuntu/pool/universe/e/extra-cmake-modules/extra-cmake-modules_5.44.0-0ubuntu1_amd64.deb;
+ sudo apt-get clean;
+ sudo apt-get update;
+ sudo apt-get install dpkg;
+ sudo dpkg -i extra-cmake-modules_5.44.0-0ubuntu1_amd64.deb;
git clone git://anongit.freedesktop.org/wayland/wayland-protocols;
pushd wayland-protocols;
git checkout 1.15 && ./autogen.sh --prefix=/usr && make && sudo make install;