From 3ade071f273aaa973e44bf95d6b1d4913a18f03b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:39:48 +0200 Subject: Adding upstream version 43.2. Signed-off-by: Daniel Baumann --- .gitlab/Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitlab/Dockerfile (limited to '.gitlab/Dockerfile') diff --git a/.gitlab/Dockerfile b/.gitlab/Dockerfile new file mode 100644 index 0000000..f473ada --- /dev/null +++ b/.gitlab/Dockerfile @@ -0,0 +1,14 @@ +FROM fedora:latest + +RUN dnf install --nogpg -y dnf-plugins-core findutils git \ + && dnf builddep --nogpg -y uncrustify \ + && dnf clean all \ + && git clone --depth 1 https://github.com/uncrustify/uncrustify.git \ + && cd uncrustify \ + && mkdir build \ + && cd build \ + && cmake -DCMAKE_INSTALL_PREFIX=/usr .. \ + && make \ + && make install \ + && cd ../.. \ + && rm -rf uncrustify -- cgit v1.2.3