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