summaryrefslogtreecommitdiff
path: root/.gitlab
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2021-08-10 10:08:01 +0200
committerOndrej Holy <oholy@redhat.com>2021-08-10 11:20:25 +0000
commit82f4d0cd94e1b2cd9cbe47580304989f78ccebab (patch)
treea976295036fd1793fd4fa521e135b3e541deabfe /.gitlab
parent156a68cf520a8d2e818a21c5ec6622cdeab5d3d9 (diff)
downloadnautilus-82f4d0cd94e1b2cd9cbe47580304989f78ccebab.tar.gz
Switch to meson for gnome-autoar
Relates: https://gitlab.gnome.org/GNOME/gnome-autoar/-/merge_requests/11
Diffstat (limited to '.gitlab')
-rw-r--r--.gitlab/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab/Dockerfile b/.gitlab/Dockerfile
index 601829db7..8c05e2635 100644
--- a/.gitlab/Dockerfile
+++ b/.gitlab/Dockerfile
@@ -9,9 +9,9 @@ RUN dnf install --nogpg -y gnome-common \
&& dnf clean all \
&& git clone --depth 1 https://gitlab.gnome.org/GNOME/gnome-autoar.git \
&& cd gnome-autoar \
- && ./autogen.sh --prefix /usr \
- && make \
- && make install \
+ && meson . _build --prefix=/usr \
+ && ninja -C _build \
+ && ninja -C _build install \
&& cd .. \
&& rm -rf gnome-autoar