Libzim depends of zim-testing-suite.
This commit is contained in:
parent
f829493502
commit
e69c98c1d3
|
@ -14,7 +14,7 @@ class AllBaseDependencies(Dependency):
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_dependencies(cls, configInfo, allDeps):
|
def get_dependencies(cls, configInfo, allDeps):
|
||||||
if neutralEnv("distname") == "Windows":
|
if neutralEnv("distname") == "Windows":
|
||||||
return ["zlib", "zstd", "icu4c"]
|
return ["zlib", "zstd", "icu4c", "zim-testing-suite"]
|
||||||
if configInfo.build == "wasm" or environ.get("OS_NAME") == "bionic":
|
if configInfo.build == "wasm" or environ.get("OS_NAME") == "bionic":
|
||||||
return ["zlib", "lzma", "zstd", "icu4c", "xapian-core"]
|
return ["zlib", "lzma", "zstd", "icu4c", "xapian-core"]
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ class Libzim(Dependency):
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_dependencies(cls, configInfo, allDeps):
|
def get_dependencies(cls, configInfo, allDeps):
|
||||||
if neutralEnv("distname") == "Windows":
|
if neutralEnv("distname") == "Windows":
|
||||||
return ["zstd", "icu4c"]
|
return ["zstd", "icu4c", "zim-testing-suite"]
|
||||||
deps = ["lzma", "zstd", "xapian-core", "icu4c"]
|
deps = ["lzma", "zstd", "xapian-core", "icu4c"]
|
||||||
if configInfo.name not in ("flatpak", "wasm"):
|
if configInfo.name not in ("flatpak", "wasm"):
|
||||||
deps.append("zim-testing-suite")
|
deps.append("zim-testing-suite")
|
||||||
|
|
Loading…
Reference in New Issue