Update xz to 5.8.1 in Docker

This commit is contained in:
Ilya Fedin 2025-05-01 15:00:34 +04:00 committed by John Preston
parent cfefb8b2e0
commit fcec85881f

View file

@ -61,10 +61,10 @@ RUN git clone -b v1.3.1 --depth=1 {{ GIT }}/madler/zlib.git \
&& rm -rf zlib && rm -rf zlib
FROM builder AS xz FROM builder AS xz
RUN git clone -b v5.4.4 --depth=1 {{ GIT }}/tukaani-project/xz.git \ RUN git clone -b v5.8.1 --depth=1 {{ GIT }}/tukaani-project/xz.git \
&& cd xz \ && cd xz \
&& cmake -B build . -DCMAKE_BUILD_TYPE=None \ && cmake -GNinja -B build . -DCMAKE_BUILD_TYPE=None \
&& cmake --build build -j$(nproc) \ && cmake --build build --parallel \
&& DESTDIR="{{ LibrariesPath }}/xz-cache" cmake --install build \ && DESTDIR="{{ LibrariesPath }}/xz-cache" cmake --install build \
&& cd .. \ && cd .. \
&& rm -rf xz && rm -rf xz