Skip to content
Snippets Groups Projects
Commit 146f4806 authored by Johan Helsing's avatar Johan Helsing
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
FROM docker-qt-tests:latest
RUN sudo apt-get remove -y \
libwayland-bin \
libwayland-dev \
libwayland-client0 \
libwayland-server0
RUN sudo apt-get update && sudo apt-get install -y \
autoconf \
libtool \
libffi-dev
COPY build-and-install-libwayland.sh /home/build/scripts/build-and-install-libwayland.sh
RUN scripts/build-and-install-libwayland.sh 1.6.0
#!/bin/bash
version="$1"
set -ex
git clone https://github.com/wayland-project/wayland.git
cd wayland
git checkout $version
./autogen.sh --disable-documentation
make
sudo make install
-opensource
-confirm-license
-developer-build
-no-xcb
-no-feature-vnc
-no-linuxfb
-no-eglfs
-nomake
examples
-nomake
tests
-feature-wayland-client
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment