13 lines
613 B
Batchfile
13 lines
613 B
Batchfile
REM ========================================================
|
|
REM Install zstd
|
|
curl -fsSL -o zstd-v1.4.4.zip https://github.com/facebook/zstd/archive/v1.4.4.zip || exit /b 1
|
|
7z x zstd-v1.4.4.zip || exit /b 1
|
|
REM Fixing https://github.com/facebook/zstd/issues/2073
|
|
%MINGW64_RUN% "cd /c/projects/kiwix-build/zstd-1.4.4 && ../appveyor/apply_patch.sh zstd_meson.patch" || exit /b 1
|
|
cd zstd-1.4.4/build/meson
|
|
meson . builddir --prefix %EXTRA_DIR% --default-library static --buildtype release -Dbin_programs=false -Dbin_contrib=false || exit /b 1
|
|
cd builddir
|
|
ninja || exit /b 1
|
|
ninja install || exit /b 1
|
|
cd ..\..\..\..
|