mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-28 05:49:33 +00:00
Update lzma version to 5.2.7
On top of using a more recent version (which is good it itself), version 5.2.7 use a autotools version which knows about wasm.
This commit is contained in:
@ -9,11 +9,19 @@ class lzma(Dependency):
|
||||
name = 'lzma'
|
||||
|
||||
class Source(ReleaseDownload):
|
||||
archive = Remotefile('xz-5.2.4.tar.gz',
|
||||
'b512f3b726d3b37b6dc4c8570e137b9311e7552e8ccbab4d39d47ce5f4177145'
|
||||
archive = Remotefile('xz-5.2.7.tar.gz',
|
||||
'06327c2ddc81e126a6d9a78b0be5014b976a2c0832f492dcfc4755d7facf6d33',
|
||||
'https://altushost-swe.dl.sourceforge.net/project/lzmautils/xz-5.2.7.tar.gz'
|
||||
)
|
||||
|
||||
class Builder(MakeBuilder):
|
||||
@property
|
||||
def configure_option(self):
|
||||
return "--disable-xz --disable-xzdec"
|
||||
return ("--disable-xz "
|
||||
"--disable-xzdec "
|
||||
"--disable-lzmadec "
|
||||
"--disable-lzmainfo "
|
||||
"--disable-lzma-links "
|
||||
"--disable-scripts "
|
||||
"--disable-doc "
|
||||
"--disable-symbol-versions ")
|
||||
|
@ -43,7 +43,7 @@ base_deps_meta_version = '78'
|
||||
|
||||
base_deps_versions = {
|
||||
'zlib' : '1.2.12',
|
||||
'lzma' : '5.2.4',
|
||||
'lzma' : '5.2.7',
|
||||
'zstd' : '1.5.2',
|
||||
'docoptcpp' : '0.6.2',
|
||||
'uuid' : '1.43.4',
|
||||
|
Reference in New Issue
Block a user