mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
aedi: move harfbuzz to tier 3
This commit is contained in:
parent
205418234b
commit
cbd3974c3f
3 changed files with 35 additions and 35 deletions
|
@ -72,7 +72,6 @@ def targets():
|
|||
BrotliTarget(),
|
||||
DumbTarget(),
|
||||
FmtTarget(),
|
||||
HarfBuzzTarget(),
|
||||
LzmaTarget(),
|
||||
MadTarget(),
|
||||
MikmodTarget(),
|
||||
|
@ -99,6 +98,7 @@ def targets():
|
|||
FreeTypeTarget(),
|
||||
FtglTarget(),
|
||||
GlewTarget(),
|
||||
HarfBuzzTarget(),
|
||||
LuaTarget(),
|
||||
Sdl2TtfTarget(),
|
||||
SfmlTarget(),
|
||||
|
|
|
@ -89,40 +89,6 @@ class FmtTarget(CMakeStaticDependencyTarget):
|
|||
super().configure(state)
|
||||
|
||||
|
||||
class HarfBuzzTarget(CMakeStaticDependencyTarget):
|
||||
def __init__(self, name='harfbuzz'):
|
||||
super().__init__(name)
|
||||
|
||||
def prepare_source(self, state: BuildState):
|
||||
state.download_source(
|
||||
'https://github.com/harfbuzz/harfbuzz/archive/refs/tags/2.8.2.tar.gz',
|
||||
'4164f68103e7b52757a732227cfa2a16cfa9984da513843bb4eb7669adc6f220')
|
||||
|
||||
def configure(self, state: BuildState):
|
||||
state.options['HB_HAVE_FREETYPE'] = 'ON'
|
||||
super().configure(state)
|
||||
|
||||
def post_build(self, state: BuildState):
|
||||
super().post_build(state)
|
||||
|
||||
def update_config_cmake(line: str):
|
||||
include_var = ' INTERFACE_INCLUDE_DIRECTORIES '
|
||||
link_var = ' INTERFACE_LINK_LIBRARIES '
|
||||
|
||||
if line.startswith(include_var):
|
||||
return include_var + '"${_IMPORT_PREFIX}/include/harfbuzz"\n'
|
||||
elif line.startswith(link_var):
|
||||
return link_var + '"-framework ApplicationServices"\n'
|
||||
|
||||
return line
|
||||
|
||||
config_path = state.install_path / 'lib/cmake/harfbuzz/harfbuzzConfig.cmake'
|
||||
self.update_text_file(config_path, update_config_cmake)
|
||||
|
||||
self.write_pc_file(state, description='HarfBuzz text shaping library', version='2.8.2', libs='-lharfbuzz',
|
||||
libs_private='-lc++ -framework CoreFoundation -framework CoreGraphics -framework CoreText')
|
||||
|
||||
|
||||
class LzmaTarget(CMakeStaticDependencyTarget):
|
||||
def __init__(self, name='lzma'):
|
||||
super().__init__(name)
|
||||
|
|
|
@ -165,6 +165,40 @@ class GlewTarget(CMakeStaticDependencyTarget):
|
|||
return line
|
||||
|
||||
|
||||
class HarfBuzzTarget(CMakeStaticDependencyTarget):
|
||||
def __init__(self, name='harfbuzz'):
|
||||
super().__init__(name)
|
||||
|
||||
def prepare_source(self, state: BuildState):
|
||||
state.download_source(
|
||||
'https://github.com/harfbuzz/harfbuzz/archive/refs/tags/2.8.2.tar.gz',
|
||||
'4164f68103e7b52757a732227cfa2a16cfa9984da513843bb4eb7669adc6f220')
|
||||
|
||||
def configure(self, state: BuildState):
|
||||
state.options['HB_HAVE_FREETYPE'] = 'ON'
|
||||
super().configure(state)
|
||||
|
||||
def post_build(self, state: BuildState):
|
||||
super().post_build(state)
|
||||
|
||||
def update_config_cmake(line: str):
|
||||
include_var = ' INTERFACE_INCLUDE_DIRECTORIES '
|
||||
link_var = ' INTERFACE_LINK_LIBRARIES '
|
||||
|
||||
if line.startswith(include_var):
|
||||
return include_var + '"${_IMPORT_PREFIX}/include/harfbuzz"\n'
|
||||
elif line.startswith(link_var):
|
||||
return link_var + '"-framework ApplicationServices"\n'
|
||||
|
||||
return line
|
||||
|
||||
config_path = state.install_path / 'lib/cmake/harfbuzz/harfbuzzConfig.cmake'
|
||||
self.update_text_file(config_path, update_config_cmake)
|
||||
|
||||
self.write_pc_file(state, description='HarfBuzz text shaping library', version='2.8.2', libs='-lharfbuzz',
|
||||
libs_private='-lc++ -framework CoreFoundation -framework CoreGraphics -framework CoreText')
|
||||
|
||||
|
||||
class LuaTarget(MakeTarget):
|
||||
def __init__(self, name='lua'):
|
||||
super().__init__(name)
|
||||
|
|
Loading…
Reference in a new issue