Skip to content

Commit 8550603

Browse files
author
MohitMaliFtechiz
committed
Changing temporary url for libzim linux variant zim file for test new changes
1 parent 66ebc4e commit 8550603

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

lib/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ dependencies {
7777

7878
ext.libkiwix_base_url = 'https://download.kiwix.org/nightly'
7979
ext.libzim_base_url = 'https://download.openzim.org/nightly'
80-
// change this date to get latest libzim .so and header files
80+
// temporary url for libzim linux variant zim file, Once https://github.com/openzim/libzim/issues/772 fixed, then we can remove this
81+
ext.linux_libzim_base_url = 'https://download.openzim.org/nightly/2023-03-20'
82+
8183
ext.nightly_date_for_libkiwix = project.properties["nightly_date_for_libkiwix"] ?: ""
8284
ext.nightly_date_for_libkiwix_linux = project.properties["nightly_date_for_libkiwix_linux"] ?: ""
8385
ext.nightly_date_for_libzim = project.properties["nightly_date_for_libzim"] ?: ""
@@ -92,7 +94,7 @@ task downloadLibzimSoAndHeaderFiles(type: Download) {
9294
libzim_base_url + '/libzim_android-arm64.tar.gz',
9395
libzim_base_url + '/libzim_android-x86.tar.gz',
9496
libzim_base_url + '/libzim_android-x86_64.tar.gz',
95-
libzim_base_url + '/libzim_linux-x86_64.tar.gz'
97+
linux_libzim_base_url + '/libzim_linux-x86_64-2023-03-20.tar.gz'
9698
])
9799
dest buildDir
98100
overwrite true
@@ -120,7 +122,7 @@ task unzipLibzim(type: Copy) {
120122
from tarTree(buildDir.path + "/libzim_android-x86_64.tar.gz")
121123
into buildDir
122124
// unzip linux x86_64
123-
from tarTree(buildDir.path + "/libzim_linux-x86_64.tar.gz")
125+
from tarTree(buildDir.path + "/libzim_linux-x86_64-2023-03-20.tar.gz")
124126
into buildDir
125127
}
126128

0 commit comments

Comments
 (0)