10 lines
308 B
Batchfile
10 lines
308 B
Batchfile
REM ========================================================
|
|
REM Install libzim
|
|
git clone https://github.com/openzim/libzim.git || exit /b 1
|
|
cd libzim
|
|
meson . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1
|
|
cd build
|
|
ninja || exit /b 1
|
|
ninja install || exit /b 1
|
|
cd ..\..
|