File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,8 +76,6 @@ dependencies {
7676
7777ext. libkiwix_base_url = ' https://download.kiwix.org/nightly'
7878ext. libzim_base_url = ' https://download.openzim.org/nightly'
79- // temporary url for libzim linux variant zim file, Once https://github.com/openzim/libzim/issues/772 fixed, then we can remove this
80- ext. linux_libzim_base_url = ' https://download.openzim.org/nightly/2023-03-20'
8179
8280ext. libkiwix_version = project. properties[" libkiwix_version" ] ?: " "
8381ext. libzim_version = project. properties[" libzim_version" ] ?: " "
@@ -88,7 +86,7 @@ task downloadLibzimSoAndHeaderFiles(type: Download) {
8886 libzim_base_url + ' /libzim_android-arm64.tar.gz' ,
8987 libzim_base_url + ' /libzim_android-x86.tar.gz' ,
9088 libzim_base_url + ' /libzim_android-x86_64.tar.gz' ,
91- linux_libzim_base_url + ' /libzim_linux-x86_64-2023-03-20 .tar.gz'
89+ libzim_base_url + ' /libzim_linux-x86_64.tar.gz'
9290 ])
9391 dest buildDir
9492 overwrite true
@@ -108,7 +106,7 @@ task unzipLibzim(type: Copy) {
108106 from tarTree(buildDir. path + " /libzim_android-x86_64.tar.gz" )
109107 into buildDir
110108 // unzip linux x86_64
111- from tarTree(buildDir. path + " /libzim_linux-x86_64-2023-03-20 .tar.gz" )
109+ from tarTree(buildDir. path + " /libzim_linux-x86_64.tar.gz" )
112110 into buildDir
113111}
114112
You can’t perform that action at this time.
0 commit comments