mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 21:31:25 +00:00
build script: make .pc file processor a target's method
This commit is contained in:
parent
9955ff3517
commit
4cfb60042e
1 changed files with 8 additions and 6 deletions
14
build.py
14
build.py
|
@ -89,7 +89,6 @@ class Target(BaseTarget):
|
||||||
self.prefix = None
|
self.prefix = None
|
||||||
self.environment = os.environ
|
self.environment = os.environ
|
||||||
self.options = CommandLineOptions()
|
self.options = CommandLineOptions()
|
||||||
self.pkg_proc = None
|
|
||||||
|
|
||||||
def initialize(self, builder: 'Builder'):
|
def initialize(self, builder: 'Builder'):
|
||||||
self.prefix = builder.deps_path + self.name
|
self.prefix = builder.deps_path + self.name
|
||||||
|
@ -171,7 +170,12 @@ class Target(BaseTarget):
|
||||||
for filename in files:
|
for filename in files:
|
||||||
if filename.endswith('.pc'):
|
if filename.endswith('.pc'):
|
||||||
file_path = root + os.sep + filename
|
file_path = root + os.sep + filename
|
||||||
Target.update_pc_file(file_path, self.pkg_proc)
|
Target.update_pc_file(file_path, self._process_pkg_config)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def _process_pkg_config(pcfile: str, line: str) -> str:
|
||||||
|
assert pcfile
|
||||||
|
return line
|
||||||
|
|
||||||
|
|
||||||
class MakeTarget(Target):
|
class MakeTarget(Target):
|
||||||
|
@ -712,7 +716,6 @@ class FlacTarget(ConfigureMakeStaticDependencyTarget):
|
||||||
class FluidSynthTarget(CMakeStaticDependencyTarget):
|
class FluidSynthTarget(CMakeStaticDependencyTarget):
|
||||||
def __init__(self, name='fluidsynth'):
|
def __init__(self, name='fluidsynth'):
|
||||||
super().__init__(name)
|
super().__init__(name)
|
||||||
self.pkg_proc = self._pkg_proc
|
|
||||||
|
|
||||||
opts = self.options
|
opts = self.options
|
||||||
opts['LIB_SUFFIX'] = None
|
opts['LIB_SUFFIX'] = None
|
||||||
|
@ -729,7 +732,7 @@ class FluidSynthTarget(CMakeStaticDependencyTarget):
|
||||||
return os.path.exists(builder.source_path + 'fluidsynth.pc.in')
|
return os.path.exists(builder.source_path + 'fluidsynth.pc.in')
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _pkg_proc(_, line: str):
|
def _process_pkg_config(pcfile: str, line: str) -> str:
|
||||||
if line.startswith('Version:'):
|
if line.startswith('Version:'):
|
||||||
# Add instpatch as private dependency which pulls all necessary libraries
|
# Add instpatch as private dependency which pulls all necessary libraries
|
||||||
return line + 'Requires.private: libinstpatch-1.0' + os.linesep
|
return line + 'Requires.private: libinstpatch-1.0' + os.linesep
|
||||||
|
@ -992,7 +995,6 @@ class OggTarget(ConfigureMakeStaticDependencyTarget):
|
||||||
class OpenALTarget(CMakeStaticDependencyTarget):
|
class OpenALTarget(CMakeStaticDependencyTarget):
|
||||||
def __init__(self, name='openal'):
|
def __init__(self, name='openal'):
|
||||||
super().__init__(name)
|
super().__init__(name)
|
||||||
self.pkg_proc = OpenALTarget._pkg_proc
|
|
||||||
|
|
||||||
opts = self.options
|
opts = self.options
|
||||||
opts['ALSOFT_EXAMPLES'] = 'NO'
|
opts['ALSOFT_EXAMPLES'] = 'NO'
|
||||||
|
@ -1007,7 +1009,7 @@ class OpenALTarget(CMakeStaticDependencyTarget):
|
||||||
return os.path.exists(builder.source_path + 'openal.pc.in')
|
return os.path.exists(builder.source_path + 'openal.pc.in')
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _pkg_proc(_, line: str):
|
def _process_pkg_config(pcfile: str, line: str) -> str:
|
||||||
libs_private = 'Libs.private:'
|
libs_private = 'Libs.private:'
|
||||||
|
|
||||||
if line.startswith(libs_private):
|
if line.startswith(libs_private):
|
||||||
|
|
Loading…
Reference in a new issue