2021-05-01 08:54:52 +00:00
|
|
|
#
|
|
|
|
# Helper module to build macOS version of various source ports
|
2022-01-11 09:43:29 +00:00
|
|
|
# Copyright (C) 2020-2022 Alexey Lysiuk
|
2021-05-01 08:54:52 +00:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
from .base import *
|
|
|
|
|
|
|
|
|
|
|
|
class DumbTarget(CMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='dumb'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://github.com/kode54/dumb/archive/2.0.3.tar.gz',
|
|
|
|
'99bfac926aeb8d476562303312d9f47fd05b43803050cd889b44da34a9b2a4f9')
|
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
2021-07-22 06:51:13 +00:00
|
|
|
return state.has_source_file('include/dumb.h')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2021-08-05 06:59:49 +00:00
|
|
|
def configure(self, state: BuildState):
|
|
|
|
opts = state.options
|
|
|
|
opts['BUILD_ALLEGRO4'] = 'NO'
|
|
|
|
opts['BUILD_EXAMPLES'] = 'NO'
|
|
|
|
|
|
|
|
super().configure(state)
|
|
|
|
|
2021-05-01 08:54:52 +00:00
|
|
|
@staticmethod
|
2021-08-01 13:14:43 +00:00
|
|
|
def _process_pkg_config(pcfile: Path, line: str) -> str:
|
2021-06-20 11:44:18 +00:00
|
|
|
return 'Libs: -L${libdir} -ldumb\n' if line.startswith('Libs:') else line
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
2021-06-05 08:57:04 +00:00
|
|
|
class FmtTarget(CMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='fmt'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
2022-06-20 07:29:45 +00:00
|
|
|
'https://github.com/fmtlib/fmt/archive/refs/tags/8.1.1.tar.gz',
|
|
|
|
'3d794d3cf67633b34b2771eb9f073bde87e846e0d395d254df7b211ef1ec7346')
|
2021-06-05 08:57:04 +00:00
|
|
|
|
2021-08-05 06:59:49 +00:00
|
|
|
def configure(self, state: BuildState):
|
|
|
|
opts = state.options
|
|
|
|
opts['FMT_DOC'] = 'NO'
|
|
|
|
opts['FMT_TEST'] = 'NO'
|
|
|
|
|
|
|
|
super().configure(state)
|
|
|
|
|
2021-06-05 08:57:04 +00:00
|
|
|
|
2021-06-19 08:40:17 +00:00
|
|
|
class LzmaTarget(CMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='lzma'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://tukaani.org/xz/xz-5.2.5.tar.gz',
|
|
|
|
'f6f4910fd033078738bd82bfba4f49219d03b17eb0794eb91efbae419f4aba10',
|
|
|
|
patches='lzma-add-cmake')
|
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
2021-07-22 06:51:13 +00:00
|
|
|
return state.has_source_file('src/liblzma/liblzma.pc.in')
|
2021-06-19 08:40:17 +00:00
|
|
|
|
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
super().post_build(state)
|
|
|
|
|
|
|
|
self.write_pc_file(state, 'liblzma.pc', name='liblzma',
|
|
|
|
description='General purpose data compression library',
|
|
|
|
version='5.2.5', libs='-llzma')
|
|
|
|
|
|
|
|
|
2021-05-01 08:54:52 +00:00
|
|
|
class MadTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='mad'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://downloads.sourceforge.net/project/mad/libmad/0.15.1b/libmad-0.15.1b.tar.gz',
|
2021-06-01 07:18:38 +00:00
|
|
|
'bbfac3ed6bfbc2823d3775ebb931087371e142bb0e9bb1bee51a76a6e0078690',
|
|
|
|
patches='mad-support-arm64')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
2021-07-22 06:51:13 +00:00
|
|
|
return state.has_source_file('mad.h')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2021-08-05 06:59:49 +00:00
|
|
|
def configure(self, state: BuildState):
|
|
|
|
state.options['--enable-fpm'] = '64bit'
|
|
|
|
super().configure(state)
|
|
|
|
|
2021-05-01 08:54:52 +00:00
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
super().post_build(state)
|
|
|
|
self.write_pc_file(state, description='MPEG Audio Decoder', version='0.15.1b')
|
|
|
|
|
|
|
|
|
|
|
|
class MikmodTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='mikmod'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://downloads.sourceforge.net/project/mikmod/libmikmod/3.3.11.1/libmikmod-3.3.11.1.tar.gz',
|
|
|
|
'ad9d64dfc8f83684876419ea7cd4ff4a41d8bcd8c23ef37ecb3a200a16b46d19')
|
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
2021-07-22 06:51:13 +00:00
|
|
|
return state.has_source_file('libmikmod.pc.in')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
super().post_build(state)
|
2021-07-22 06:51:13 +00:00
|
|
|
self.update_config_script(state.install_path / 'bin/libmikmod-config')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ModPlugTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='modplug'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://downloads.sourceforge.net/project/modplug-xmms/libmodplug/0.8.9.0/libmodplug-0.8.9.0.tar.gz',
|
|
|
|
'457ca5a6c179656d66c01505c0d95fafaead4329b9dbaa0f997d00a3508ad9de')
|
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
2021-07-22 06:51:13 +00:00
|
|
|
return state.has_source_file('libmodplug.pc.in')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2021-08-01 13:14:43 +00:00
|
|
|
def _process_pkg_config(pcfile: Path, line: str) -> str:
|
2021-05-01 08:54:52 +00:00
|
|
|
libs_private = 'Libs.private:'
|
|
|
|
|
|
|
|
if line.startswith(libs_private):
|
|
|
|
return libs_private + ' -lc++\n'
|
|
|
|
|
|
|
|
return line
|
|
|
|
|
|
|
|
|
|
|
|
class OpusFileTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='opusfile'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
2021-05-31 08:46:13 +00:00
|
|
|
'https://ftp.osuosl.org/pub/xiph/releases/opus/opusfile-0.12.tar.gz',
|
2021-05-01 08:54:52 +00:00
|
|
|
'118d8601c12dd6a44f52423e68ca9083cc9f2bfe72da7a8c1acb22a80ae3550b')
|
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
2021-07-22 06:51:13 +00:00
|
|
|
return state.has_source_file('opusfile.pc.in')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2021-08-05 06:59:49 +00:00
|
|
|
def configure(self, state: BuildState):
|
|
|
|
state.options['--enable-http'] = 'no'
|
|
|
|
super().configure(state)
|
|
|
|
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2021-06-07 06:56:53 +00:00
|
|
|
class PngTarget(CMakeStaticDependencyTarget):
|
2021-05-01 08:54:52 +00:00
|
|
|
def __init__(self, name='png'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://downloads.sourceforge.net/libpng/libpng-1.6.37.tar.xz',
|
|
|
|
'505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca')
|
|
|
|
|
2021-08-05 06:59:49 +00:00
|
|
|
def configure(self, state: BuildState):
|
|
|
|
opts = state.options
|
|
|
|
opts['PNG_ARM_NEON'] = 'on'
|
|
|
|
opts['PNG_SHARED'] = 'OFF'
|
|
|
|
|
|
|
|
super().configure(state)
|
|
|
|
|
2021-05-01 08:54:52 +00:00
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
super().post_build(state)
|
2022-08-08 09:57:42 +00:00
|
|
|
|
|
|
|
def update_cmake_libs(line: str):
|
|
|
|
link_libs = ' INTERFACE_LINK_LIBRARIES '
|
|
|
|
return f'{link_libs}"ZLIB::ZLIB"\n' if line.startswith(link_libs) else line
|
|
|
|
|
|
|
|
self.update_text_file(state.install_path / 'lib/libpng/libpng16.cmake', update_cmake_libs)
|
2021-07-22 06:51:13 +00:00
|
|
|
self.update_config_script(state.install_path / 'bin/libpng16-config')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PortMidiTarget(CMakeTarget):
|
|
|
|
def __init__(self, name='portmidi'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://downloads.sourceforge.net/project/portmedia/portmidi/217/portmidi-src-217.zip',
|
2021-06-01 07:18:38 +00:00
|
|
|
'08e9a892bd80bdb1115213fb72dc29a7bf2ff108b378180586aa65f3cfd42e0f',
|
|
|
|
patches='portmidi-modernize-cmake')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
def post_build(self, state: BuildState):
|
2021-07-22 06:51:13 +00:00
|
|
|
if state.install_path.exists():
|
2021-05-01 08:54:52 +00:00
|
|
|
shutil.rmtree(state.install_path)
|
|
|
|
|
2021-07-22 06:51:13 +00:00
|
|
|
include_path = state.install_path / 'include'
|
2021-05-01 08:54:52 +00:00
|
|
|
os.makedirs(include_path)
|
2021-07-22 06:51:13 +00:00
|
|
|
shutil.copy(state.source / 'pm_common/portmidi.h', include_path)
|
|
|
|
shutil.copy(state.source / 'porttime/porttime.h', include_path)
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2021-07-22 06:51:13 +00:00
|
|
|
lib_path = state.install_path / 'lib'
|
2021-05-01 08:54:52 +00:00
|
|
|
os.makedirs(lib_path)
|
2021-07-22 06:51:13 +00:00
|
|
|
shutil.copy(state.build_path / 'libportmidi_s.a', lib_path / 'libportmidi.a')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SamplerateTarget(CMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='samplerate'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://github.com/libsndfile/libsamplerate/releases/download/0.2.1/libsamplerate-0.2.1.tar.bz2',
|
2021-08-02 07:53:23 +00:00
|
|
|
'f6323b5e234753579d70a0af27796dde4ebeddf58aae4be598e39b3cee00c90a')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2021-08-02 07:54:06 +00:00
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
super().post_build(state)
|
|
|
|
|
|
|
|
def update_linker_flags(line: str):
|
|
|
|
link_var = ' INTERFACE_LINK_LIBRARIES '
|
|
|
|
return None if line.startswith(link_var) else line
|
|
|
|
|
|
|
|
cmake_module = state.install_path / 'lib/cmake/SampleRate/SampleRateTargets.cmake'
|
|
|
|
self.update_text_file(cmake_module, update_linker_flags)
|
|
|
|
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
class Sdl2Target(CMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='sdl2'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
2022-04-30 09:41:42 +00:00
|
|
|
'https://libsdl.org/release/SDL2-2.0.22.tar.gz',
|
|
|
|
'fe7cbf3127882e3fc7259a75a0cb585620272c51745d3852ab9dd87960697f2e',
|
2021-12-04 13:13:02 +00:00
|
|
|
patches=('sdl2-no-updaterev', 'sdl2-no-gamecontroller+corehaptic'))
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2021-10-31 09:21:53 +00:00
|
|
|
FRAMEWORKS = '-framework AudioToolbox -framework AVFoundation -framework Carbon' \
|
|
|
|
' -framework Cocoa -framework CoreAudio -framework CoreVideo -framework ForceFeedback' \
|
|
|
|
' -framework Foundation -framework IOKit -framework Metal -framework QuartzCore'
|
|
|
|
LINKER_FLAGS = ' -L${libdir} -lSDL2 ' + FRAMEWORKS + os.linesep
|
2021-09-12 07:55:57 +00:00
|
|
|
|
2021-08-05 06:59:49 +00:00
|
|
|
def configure(self, state: BuildState):
|
2021-09-12 07:56:41 +00:00
|
|
|
state.options['SDL_STATIC_PIC'] = 'YES'
|
2021-09-12 07:55:57 +00:00
|
|
|
super().configure(state)
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
super().post_build(state)
|
|
|
|
|
2021-09-08 09:06:55 +00:00
|
|
|
def update_sdl2_config(_: Path, line: str):
|
|
|
|
if line.startswith('# '):
|
|
|
|
return None
|
|
|
|
elif line.startswith(' echo -I'):
|
|
|
|
return ' echo -I${prefix}/include/SDL2 -D_THREAD_SAFE\n'
|
|
|
|
elif line.startswith(' echo -L'):
|
2021-05-01 08:54:52 +00:00
|
|
|
return ' echo' + Sdl2Target.LINKER_FLAGS
|
|
|
|
|
|
|
|
return line
|
|
|
|
|
2021-07-22 06:51:13 +00:00
|
|
|
self.update_config_script(state.install_path / 'bin/sdl2-config', update_sdl2_config)
|
2021-06-05 09:07:54 +00:00
|
|
|
|
|
|
|
def update_targets_cmake(line: str):
|
2021-12-04 11:46:32 +00:00
|
|
|
libs = ' INTERFACE_LINK_LIBRARIES '
|
|
|
|
return f'{libs}"{Sdl2Target.FRAMEWORKS}"\n' if line.startswith(libs) else line
|
2021-06-04 06:51:19 +00:00
|
|
|
|
2021-06-05 09:07:54 +00:00
|
|
|
for suffix in ('', '-release'):
|
2022-01-19 10:10:46 +00:00
|
|
|
file_path = state.install_path / f'lib/cmake/SDL2/SDL2staticTargets{suffix}.cmake'
|
2021-06-05 09:07:54 +00:00
|
|
|
self.update_text_file(file_path, update_targets_cmake)
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2021-08-01 13:14:43 +00:00
|
|
|
def _process_pkg_config(pcfile: Path, line: str) -> str:
|
2021-05-01 08:54:52 +00:00
|
|
|
libs = 'Libs:'
|
|
|
|
|
|
|
|
if line.startswith(libs):
|
|
|
|
return libs + Sdl2Target.LINKER_FLAGS
|
|
|
|
|
|
|
|
return line
|
|
|
|
|
|
|
|
|
2022-07-09 13:33:38 +00:00
|
|
|
class Sdl2ImageTarget(CMakeStaticDependencyTarget):
|
2021-05-01 08:54:52 +00:00
|
|
|
def __init__(self, name='sdl2_image'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
2022-07-09 13:33:38 +00:00
|
|
|
'https://github.com/libsdl-org/SDL_image/releases/download/release-2.6.0/SDL2_image-2.6.0.tar.gz',
|
|
|
|
'611c862f40de3b883393aabaa8d6df350aa3ae4814d65030972e402edae85aaa')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2022-07-09 13:33:38 +00:00
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
super().post_build(state)
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2022-07-09 13:33:38 +00:00
|
|
|
self.write_pc_file(state, filename='SDL2_image.pc', name='SDL2_image',
|
|
|
|
description='image loading library for Simple DirectMedia Layer',
|
2022-07-11 07:10:33 +00:00
|
|
|
version='2.6.0', requires='sdl2 >= 2.0.9',
|
2022-07-09 13:33:38 +00:00
|
|
|
libs='-lSDL2_image', cflags='-I${includedir}/SDL2')
|
|
|
|
|
|
|
|
bad_cmake_files_path = state.install_path / 'SDL2_image.framework/Resources'
|
|
|
|
good_cmake_files_path = state.install_path / 'lib/cmake'
|
|
|
|
|
|
|
|
if good_cmake_files_path.exists():
|
|
|
|
shutil.rmtree(bad_cmake_files_path)
|
|
|
|
|
|
|
|
shutil.move(str(bad_cmake_files_path), str(good_cmake_files_path))
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
2022-07-09 14:01:03 +00:00
|
|
|
class Sdl2MixerTarget(CMakeStaticDependencyTarget):
|
2021-05-01 08:54:52 +00:00
|
|
|
def __init__(self, name='sdl2_mixer'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
2022-07-17 10:18:48 +00:00
|
|
|
'https://github.com/libsdl-org/SDL_mixer/releases/download/release-2.6.1/SDL2_mixer-2.6.1.tar.gz',
|
|
|
|
'bc5c7b85f297e5f3cb34c99c366a4746922fc41365b15fd78a164dda71a861a3')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
def configure(self, state: BuildState):
|
2022-07-09 14:01:03 +00:00
|
|
|
opts = state.options
|
|
|
|
opts['SDL2MIXER_DEPS_SHARED'] = 'NO'
|
|
|
|
opts['SDL2MIXER_MP3_MPG123'] = 'YES'
|
|
|
|
opts['SDL2MIXER_OPUS_SHARED'] = 'NO'
|
|
|
|
opts['SDL2MIXER_SAMPLES'] = 'NO'
|
|
|
|
opts['SDL2MIXER_VORBIS'] = 'VORBISFILE'
|
|
|
|
opts['SDL2MIXER_VORBIS_VORBISFILE_SHARED'] = 'NO'
|
|
|
|
opts['SDL2MIXER_MOD_XMP'] = 'YES'
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
super().configure(state)
|
|
|
|
|
2022-07-09 14:01:03 +00:00
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
super().post_build(state)
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2022-07-09 14:01:03 +00:00
|
|
|
self.write_pc_file(state, filename='SDL2_mixer.pc', name='SDL2_mixer',
|
|
|
|
description='mixer library for Simple DirectMedia Layer',
|
|
|
|
version='2.6.0', requires='sdl2 >= 2.0.9',
|
|
|
|
requires_private='flac fluidsynth libmodplug libmpg123 libxmp opusfile vorbisfile',
|
|
|
|
libs='-lSDL2_mixer', cflags='-I${includedir}/SDL2')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Sdl2NetTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='sdl2_net'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.tar.gz',
|
|
|
|
'15ce8a7e5a23dafe8177c8df6e6c79b6749a03fff1e8196742d3571657609d21')
|
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
2021-07-22 06:51:13 +00:00
|
|
|
return state.has_source_file('SDL2_net.pc.in')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SodiumTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='sodium'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://download.libsodium.org/libsodium/releases/libsodium-1.0.18.tar.gz',
|
|
|
|
'6f504490b342a4f8a4c4a02fc9b866cbef8622d5df4e5452b46be121e46636c1')
|
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
2021-07-22 06:51:13 +00:00
|
|
|
return state.has_source_file('libsodium.pc.in')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
2021-09-08 07:36:56 +00:00
|
|
|
class VulkanHeadersTarget(CMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='vulkan-headers'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
# Version should match with the current MoltenVK release
|
2022-08-15 07:30:26 +00:00
|
|
|
'https://github.com/KhronosGroup/Vulkan-Headers/archive/refs/tags/v1.3.224.tar.gz',
|
|
|
|
'8829272058455c6ba393df66b9fac3ae3617eb0df48c860e225ceb1622fa7700')
|
2021-09-08 07:36:56 +00:00
|
|
|
|
|
|
|
|
2021-09-08 07:49:49 +00:00
|
|
|
class VulkanLoaderTarget(CMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='vulkan-loader'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
# Version should match with the current MoltenVK release
|
2022-06-09 06:45:59 +00:00
|
|
|
'https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v1.3.216.tar.gz',
|
|
|
|
'006de2ee5bad4ef797ce4c25df166e09f2e5dd136e99cb507da313aa86770c00')
|
2021-09-08 07:49:49 +00:00
|
|
|
|
|
|
|
def configure(self, state: BuildState):
|
2022-08-15 07:34:46 +00:00
|
|
|
opts = state.options
|
|
|
|
opts['BUILD_STATIC_LOADER'] = 'YES'
|
|
|
|
opts['CMAKE_INSTALL_SYSCONFDIR'] = '/usr/local/etc'
|
|
|
|
|
2021-09-08 07:49:49 +00:00
|
|
|
super().configure(state)
|
|
|
|
|
|
|
|
|
2021-09-03 08:32:52 +00:00
|
|
|
class XmpTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='xmp'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://sourceforge.net/projects/xmp/files/libxmp/4.5.0/libxmp-4.5.0.tar.gz',
|
|
|
|
'7847d262112d14e8442f44e5ac6ed9ddbca54c251284720b563c852b31f26e75')
|
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
|
|
|
return state.has_source_file('libxmp.pc.in')
|
|
|
|
|
|
|
|
def configure(self, state: BuildState):
|
|
|
|
state.options['--enable-static'] = None
|
|
|
|
super().configure(state)
|