Add missing dependency `aria2` to "all" dependencies.
`AllBaseDependencies` is used as a dummy target to build all base dependencies in the CI.
This commit is contained in:
parent
4ee28541cd
commit
276343c6af
|
@ -13,10 +13,12 @@ class AllBaseDependencies(Dependency):
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_dependencies(cls, platformInfo, allDeps):
|
def get_dependencies(cls, platformInfo, allDeps):
|
||||||
base_deps = ['zlib', 'lzma', 'zstd', 'xapian-core', 'pugixml', 'libcurl', 'icu4c', 'mustache', 'libmicrohttpd', 'zim-testing-suite']
|
base_deps = ['zlib', 'lzma', 'zstd', 'xapian-core', 'pugixml', 'libcurl', 'icu4c', 'mustache', 'libmicrohttpd', 'zim-testing-suite']
|
||||||
# zimtools
|
# Add specific dependencies depending of the platform
|
||||||
# We do not build zimtools at all on "android" and "iOS"
|
|
||||||
if platformInfo.build not in ('android', 'iOS'):
|
if platformInfo.build not in ('android', 'iOS'):
|
||||||
|
# For zimtools
|
||||||
base_deps += ['docoptcpp']
|
base_deps += ['docoptcpp']
|
||||||
|
# For kiwix-desktop
|
||||||
|
base_deps += ['aria2']
|
||||||
if platformInfo.build != 'win32':
|
if platformInfo.build != 'win32':
|
||||||
# zimwriterfs
|
# zimwriterfs
|
||||||
base_deps += ['libmagic', 'gumbo']
|
base_deps += ['libmagic', 'gumbo']
|
||||||
|
|
Loading…
Reference in New Issue