mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
aedi: add zlib-ng target
This commit is contained in:
parent
4c6910dd86
commit
6e1e476519
2 changed files with 21 additions and 1 deletions
|
@ -84,6 +84,7 @@ def targets():
|
|||
WebpTarget(),
|
||||
YasmTarget(),
|
||||
ZlibTarget(),
|
||||
ZlibNgTarget(),
|
||||
ZMusicTarget(),
|
||||
|
||||
# Special
|
||||
|
|
|
@ -928,7 +928,26 @@ class ZlibTarget(ConfigureMakeDependencyTarget):
|
|||
'c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1')
|
||||
|
||||
def detect(self, state: BuildState) -> bool:
|
||||
return os.path.exists(state.source + 'zlib.pc.in')
|
||||
return os.path.exists(state.source + 'zlib.pc.in') \
|
||||
and not os.path.exists(state.source + 'zlib-ng.h')
|
||||
|
||||
|
||||
class ZlibNgTarget(CMakeStaticDependencyTarget):
|
||||
def __init__(self, name='zlib-ng'):
|
||||
super().__init__(name)
|
||||
|
||||
opts = self.options
|
||||
opts['ZLIB_COMPAT'] = 'YES'
|
||||
opts['ZLIB_ENABLE_TESTS'] = 'NO'
|
||||
opts['ZLIB_FULL_VERSION'] = '1.2.11'
|
||||
|
||||
def prepare_source(self, state: BuildState):
|
||||
state.download_source(
|
||||
'https://github.com/zlib-ng/zlib-ng/archive/2.0.1.tar.gz',
|
||||
'8599893f9b78bf979c1a1d6549b730367c9186560c6879590354998cc55428cf')
|
||||
|
||||
def detect(self, state: BuildState) -> bool:
|
||||
return os.path.exists(state.source + 'zlib-ng.h')
|
||||
|
||||
|
||||
class ZMusicTarget(CMakeStaticDependencyTarget):
|
||||
|
|
Loading…
Reference in a new issue