blob: f473ada6e74ec14bf9963bd48a90f48a5e7b4392 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|