10 lines
424 B
Batchfile
10 lines
424 B
Batchfile
REM ========================================================
|
|
REM Install xapian
|
|
curl -fsSL -O http://mirror.download.kiwix.org/dev/kiwix-build/xapian-core-1.4.18.zip || exit /b 1
|
|
7z x xapian-core-1.4.18.zip || exit /b 1
|
|
cd xapian-core-1.4.18
|
|
mkdir build
|
|
cd build
|
|
%MINGW64_RUN% "cd /c/Projects/kiwix-build/xapian-core-1.4.18/build && /c/Projects/kiwix-build/appveyor/build_xapian.sh" > build_xapian.log || exit /b 1
|
|
cd ..\..
|