Fix url of downloaded dependencies.
We now store the dependencies in kiwix-build subfolder
This commit is contained in:
parent
17c8c92dba
commit
bd1064cb3a
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue