Fix url of downloaded dependencies.

We now store the dependencies in kiwix-build subfolder
This commit is contained in:
Matthieu Gautier 2022-06-14 17:06:36 +02:00
parent 17c8c92dba
commit bd1064cb3a
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
REM ========================================================
REM Install xapian
curl -fsSL -O http://mirror.download.kiwix.org/dev/xapian-core-1.4.18.zip || exit /b 1
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

View File

@ -1,6 +1,6 @@
REM ========================================================
REM Install zlib
curl -fsSL -O http://mirror.download.kiwix.org/dev/zlib-1.2.12.meson.zip || exit /b 1
curl -fsSL -O http://mirror.download.kiwix.org/dev/kiwix-build/zlib-1.2.12.meson.zip || exit /b 1
7z x zlib-1.2.12.meson.zip || exit /b 1
cd zlib-1.2.12
meson . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1

View File

@ -25,7 +25,7 @@ COLORS = {
}
REMOTE_PREFIX = 'http://mirror.download.kiwix.org/dev/'
REMOTE_PREFIX = 'http://mirror.download.kiwix.org/dev/kiwix-build/'
def which(name):