File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,7 +77,9 @@ dependencies {
7777
7878ext. libkiwix_base_url = ' https://download.kiwix.org/nightly'
7979ext. 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+
8183ext. nightly_date_for_libkiwix = project. properties[" nightly_date_for_libkiwix" ] ?: " "
8284ext. nightly_date_for_libkiwix_linux = project. properties[" nightly_date_for_libkiwix_linux" ] ?: " "
8385ext. 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
You can’t perform that action at this time.
0 commit comments