mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-28 05:49:33 +00:00
Fix travis CI
This commit is contained in:
@ -12,11 +12,13 @@ class AllBaseDependencies(Dependency):
|
||||
class Builder(NoopBuilder):
|
||||
@classmethod
|
||||
def get_dependencies(cls, platformInfo, allDeps):
|
||||
base_deps = ['zlib', 'lzma', 'xapian-core', 'gumbo', 'pugixml', 'libmicrohttpd', 'libaria2', 'icu4c']
|
||||
if platformInfo.build != 'win32':
|
||||
base_deps += ["libmagic"]
|
||||
base_deps = ['zlib', 'lzma', 'xapian-core', 'pugixml', 'libaria2', 'icu4c']
|
||||
# zimwriterfs
|
||||
if platformInfo.build not in ('android', 'win32'):
|
||||
base_deps += ['libmagic', 'gumbo']
|
||||
# kiwix-tools
|
||||
if (platformInfo.build != 'android' and
|
||||
neutralEnv('distname') != 'Darwin'):
|
||||
base_deps += ['ctpp2c', 'ctpp2']
|
||||
base_deps += ['libmicrohttpd', 'ctpp2c', 'ctpp2']
|
||||
|
||||
return base_deps
|
||||
|
Reference in New Issue
Block a user