2020-04-25 10:05:12 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-04-25 14:31:52 +00:00
|
|
|
#
|
|
|
|
# Helper module to build macOS version of various source ports
|
|
|
|
# Copyright (C) 2020 Alexey Lysiuk
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
if sys.hexversion < 0x3070000:
|
|
|
|
print('Build module requires Python 3.7 or newer')
|
|
|
|
exit(1)
|
|
|
|
|
2020-04-25 10:05:12 +00:00
|
|
|
import argparse
|
2020-11-29 09:55:50 +00:00
|
|
|
import collections
|
|
|
|
import hashlib
|
2020-04-25 10:05:12 +00:00
|
|
|
import os
|
2020-11-29 09:55:50 +00:00
|
|
|
import re
|
2020-04-25 10:05:12 +00:00
|
|
|
import shutil
|
|
|
|
import subprocess
|
2020-11-29 09:55:50 +00:00
|
|
|
import urllib.request
|
2020-05-07 13:00:20 +00:00
|
|
|
|
2020-05-11 09:42:38 +00:00
|
|
|
|
2020-11-30 08:41:49 +00:00
|
|
|
class CommandLineOptions(dict):
|
|
|
|
def to_list(self, prefix='') -> list:
|
|
|
|
result = []
|
|
|
|
|
|
|
|
for arg_name, arg_value in self.items():
|
|
|
|
option = prefix + arg_name
|
|
|
|
option += arg_value and ('=' + arg_value) or ''
|
|
|
|
result.append(option)
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
2020-12-05 10:39:33 +00:00
|
|
|
class BaseTarget:
|
2020-11-23 11:22:07 +00:00
|
|
|
def __init__(self, name=None):
|
|
|
|
self.name = name
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
2020-12-05 10:39:33 +00:00
|
|
|
pass
|
2020-11-23 11:22:07 +00:00
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return False
|
2020-05-07 13:00:20 +00:00
|
|
|
|
2020-11-05 10:40:00 +00:00
|
|
|
def configure(self, builder: 'Builder'):
|
2020-12-05 10:39:33 +00:00
|
|
|
pass
|
2020-11-05 10:40:00 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def build(self, builder: 'Builder'):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def post_build(self, builder: 'Builder'):
|
|
|
|
pass
|
2020-11-25 09:21:04 +00:00
|
|
|
|
2020-12-05 10:39:33 +00:00
|
|
|
|
|
|
|
class Target(BaseTarget):
|
|
|
|
def __init__(self, name=None):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
self.src_root = ''
|
|
|
|
self.prefix = None
|
|
|
|
self.environment = os.environ
|
|
|
|
self.options = CommandLineOptions()
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
|
|
|
self.prefix = builder.deps_path + self.name
|
|
|
|
|
|
|
|
def configure(self, builder: 'Builder'):
|
|
|
|
os.makedirs(builder.build_path, exist_ok=True)
|
|
|
|
|
|
|
|
self.environment['PATH'] = self.environment['PATH'] \
|
|
|
|
+ os.pathsep + '/Applications/CMake.app/Contents/bin' \
|
|
|
|
+ os.pathsep + builder.bin_path
|
|
|
|
|
2020-12-05 11:23:15 +00:00
|
|
|
for prefix in ('CPP', 'C', 'CXX', 'OBJC', 'OBJCXX'):
|
|
|
|
varname = f'{prefix}FLAGS'
|
|
|
|
|
|
|
|
self._update_env(varname, f'-I{builder.include_path}')
|
|
|
|
self._set_sdk(builder, varname)
|
|
|
|
self._set_os_version(builder, varname)
|
|
|
|
|
|
|
|
ldflags = 'LDFLAGS'
|
|
|
|
self._update_env(ldflags, f'-L{builder.lib_path}')
|
|
|
|
self._set_sdk(builder, ldflags)
|
|
|
|
self._set_os_version(builder, ldflags)
|
|
|
|
|
|
|
|
def _update_env(self, name: str, value: str):
|
|
|
|
env = self.environment
|
|
|
|
env[name] = env[name] + ' ' + value if name in env else value
|
|
|
|
|
|
|
|
def _set_sdk(self, builder: 'Builder', varname: str):
|
|
|
|
if builder.sdk_path:
|
|
|
|
self._update_env(varname, f'-isysroot {builder.sdk_path}')
|
|
|
|
|
|
|
|
def _set_os_version(self, builder: 'Builder', varname: str):
|
|
|
|
if builder.os_version:
|
|
|
|
self._update_env(varname, f'-mmacosx-version-min={builder.os_version}')
|
|
|
|
|
2020-11-30 09:28:32 +00:00
|
|
|
def install(self, builder: 'Builder', options: 'CommandLineOptions' = None):
|
2020-11-29 10:26:04 +00:00
|
|
|
if builder.xcode:
|
|
|
|
return
|
|
|
|
|
|
|
|
if os.path.exists(self.prefix):
|
|
|
|
shutil.rmtree(self.prefix)
|
|
|
|
|
2020-11-30 09:28:32 +00:00
|
|
|
args = ['make', 'install']
|
|
|
|
args += options and options.to_list() or []
|
|
|
|
|
2020-11-29 10:26:04 +00:00
|
|
|
work_path = builder.build_path + self.src_root
|
2020-11-30 09:28:32 +00:00
|
|
|
subprocess.check_call(args, cwd=work_path)
|
2020-11-29 10:26:04 +00:00
|
|
|
|
2020-11-25 09:21:04 +00:00
|
|
|
|
|
|
|
class MakeTarget(Target):
|
|
|
|
def __init__(self, name=None):
|
|
|
|
super().__init__(name)
|
|
|
|
self.makefile = 'Makefile'
|
|
|
|
|
|
|
|
def configure(self, builder: 'Builder'):
|
2020-11-26 09:33:42 +00:00
|
|
|
super().configure(builder)
|
|
|
|
|
2020-11-25 09:21:04 +00:00
|
|
|
Builder.symlink_directory(builder.source_path, builder.build_path)
|
|
|
|
|
|
|
|
def build(self, builder: 'Builder'):
|
|
|
|
assert not builder.xcode
|
|
|
|
|
|
|
|
args = [
|
|
|
|
'make',
|
|
|
|
'-f', self.makefile,
|
|
|
|
'-j', builder.jobs,
|
|
|
|
]
|
2020-11-30 08:41:49 +00:00
|
|
|
args += self.options.to_list()
|
2020-11-25 09:21:04 +00:00
|
|
|
|
|
|
|
work_path = builder.build_path + self.src_root
|
|
|
|
subprocess.check_call(args, cwd=work_path, env=self.environment)
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
|
2020-11-29 09:58:34 +00:00
|
|
|
class ConfigureMakeTarget(Target):
|
|
|
|
def __init__(self, name=None):
|
|
|
|
super().__init__(name)
|
|
|
|
self.make = MakeTarget(name)
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
|
|
|
super().initialize(builder)
|
|
|
|
self.options['--prefix'] = self.prefix
|
|
|
|
|
|
|
|
self.make.initialize(builder)
|
|
|
|
|
|
|
|
def configure(self, builder: 'Builder'):
|
|
|
|
super().configure(builder)
|
|
|
|
self.make.configure(builder)
|
|
|
|
|
|
|
|
def build(self, builder: 'Builder'):
|
|
|
|
assert not builder.xcode
|
|
|
|
|
|
|
|
work_path = builder.build_path + self.src_root
|
|
|
|
args = [work_path + os.sep + 'configure']
|
2020-11-30 08:41:49 +00:00
|
|
|
args += self.options.to_list()
|
2020-11-29 09:58:34 +00:00
|
|
|
subprocess.check_call(args, cwd=work_path, env=self.environment)
|
|
|
|
|
|
|
|
self.make.build(builder)
|
|
|
|
|
|
|
|
|
2020-11-29 11:18:27 +00:00
|
|
|
class ConfigureMakeDependencyTarget(ConfigureMakeTarget):
|
|
|
|
def __init__(self, name=None):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def post_build(self, builder: 'Builder'):
|
|
|
|
self.install(builder)
|
|
|
|
|
|
|
|
|
|
|
|
class ConfigureMakeStaticDependencyTarget(ConfigureMakeDependencyTarget):
|
|
|
|
def __init__(self, name=None):
|
|
|
|
super().__init__(name)
|
|
|
|
self.options['--enable-shared'] = 'no'
|
|
|
|
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
class CMakeTarget(Target):
|
|
|
|
def __init__(self, name=None):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
src_root = self.src_root and os.sep + self.src_root or ''
|
|
|
|
cmakelists_path = builder.source_path + src_root + os.sep + 'CMakeLists.txt'
|
|
|
|
|
|
|
|
if not os.path.exists(cmakelists_path):
|
|
|
|
return False
|
|
|
|
|
|
|
|
for line in open(cmakelists_path).readlines():
|
|
|
|
project_name = CMakeTarget._extract_project_name(line)
|
|
|
|
if project_name:
|
|
|
|
project_name = project_name.lower()
|
|
|
|
project_name = project_name.replace(' ', '-')
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
return project_name == self.name
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _extract_project_name(line: str):
|
|
|
|
project_name = None
|
|
|
|
|
|
|
|
# Try to get project name without whitespaces in it
|
|
|
|
match = re.search(r'project\s*\(\s*(\w[\w-]+)', line, re.IGNORECASE)
|
|
|
|
|
|
|
|
if not match:
|
|
|
|
# Try to get project name that contains whitespaces
|
|
|
|
match = re.search(r'project\s*\(\s*"?(\w[\s\w-]+)"?', line, re.IGNORECASE)
|
|
|
|
|
|
|
|
if match:
|
|
|
|
project_name = match.group(1)
|
|
|
|
|
|
|
|
return project_name
|
|
|
|
|
|
|
|
def configure(self, builder: 'Builder'):
|
2020-11-26 09:33:42 +00:00
|
|
|
super().configure(builder)
|
2020-11-23 11:22:07 +00:00
|
|
|
|
|
|
|
args = [
|
|
|
|
'cmake',
|
|
|
|
builder.xcode and '-GXcode' or '-GUnix Makefiles',
|
|
|
|
'-DCMAKE_BUILD_TYPE=Release',
|
2020-11-29 10:26:04 +00:00
|
|
|
'-DCMAKE_INSTALL_PREFIX=' + self.prefix,
|
2020-11-23 11:22:07 +00:00
|
|
|
'-DCMAKE_PREFIX_PATH=' + builder.prefix_path,
|
|
|
|
'-DCMAKE_OSX_DEPLOYMENT_TARGET=' + builder.os_version,
|
|
|
|
]
|
|
|
|
|
|
|
|
if builder.sdk_path:
|
|
|
|
args.append('-DCMAKE_OSX_SYSROOT=' + builder.sdk_path)
|
|
|
|
|
2020-11-30 08:41:49 +00:00
|
|
|
args += self.options.to_list('-D')
|
2020-11-23 11:22:07 +00:00
|
|
|
args.append(builder.source_path + self.src_root)
|
|
|
|
|
2020-11-26 09:33:42 +00:00
|
|
|
subprocess.check_call(args, cwd=builder.build_path, env=self.environment)
|
2020-11-23 11:22:07 +00:00
|
|
|
|
|
|
|
def _link_with_sound_libraries(self, builder: 'Builder'):
|
2020-05-07 13:00:20 +00:00
|
|
|
extra_libs = (
|
|
|
|
'mpg123',
|
|
|
|
|
|
|
|
# FluidSynth with dependencies
|
|
|
|
'fluidsynth',
|
|
|
|
'instpatch-1.0',
|
|
|
|
'glib-2.0',
|
|
|
|
'gobject-2.0',
|
|
|
|
'intl',
|
2020-08-18 09:34:31 +00:00
|
|
|
'iconv',
|
2020-05-07 13:00:20 +00:00
|
|
|
'ffi',
|
|
|
|
'pcre',
|
|
|
|
|
|
|
|
# Sndfile with dependencies
|
|
|
|
'sndfile',
|
|
|
|
'ogg',
|
|
|
|
'vorbis',
|
|
|
|
'vorbisenc',
|
|
|
|
'FLAC',
|
|
|
|
'opus',
|
2020-05-07 11:52:56 +00:00
|
|
|
)
|
2020-05-07 13:00:20 +00:00
|
|
|
|
|
|
|
linker_args = '-framework AudioUnit -framework AudioToolbox -framework Carbon ' \
|
2020-08-18 09:34:31 +00:00
|
|
|
'-framework CoreAudio -framework CoreMIDI -framework CoreVideo'
|
2020-05-07 13:00:20 +00:00
|
|
|
|
|
|
|
for lib in extra_libs:
|
|
|
|
linker_args += f' {builder.lib_path}lib{lib}.a'
|
|
|
|
|
2020-11-25 08:00:21 +00:00
|
|
|
self.options['CMAKE_EXE_LINKER_FLAGS'] = linker_args
|
2020-05-11 13:37:01 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def build(self, builder: 'Builder'):
|
|
|
|
if builder.xcode:
|
|
|
|
# TODO: support case-sensitive file system
|
|
|
|
args = ('open', self.name + '.xcodeproj')
|
|
|
|
else:
|
2020-11-24 16:10:57 +00:00
|
|
|
args = ['make', '-j', builder.jobs]
|
2020-11-23 11:22:07 +00:00
|
|
|
|
|
|
|
if builder.verbose:
|
|
|
|
args.append('VERBOSE=1')
|
2020-06-14 07:38:53 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
subprocess.check_call(args, cwd=builder.build_path)
|
2020-06-14 07:38:53 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
|
2020-11-30 09:27:05 +00:00
|
|
|
class CMakeStaticDependencyTarget(CMakeTarget):
|
2020-11-29 11:18:27 +00:00
|
|
|
def __init__(self, name=None):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
# Set commonly used variables for static libraries
|
|
|
|
opts = self.options
|
|
|
|
opts['BUILD_SHARED_LIBS'] = 'NO'
|
|
|
|
opts['ENABLE_SHARED'] = 'NO'
|
|
|
|
opts['LIBTYPE'] = 'STATIC'
|
|
|
|
|
|
|
|
def post_build(self, builder: 'Builder'):
|
|
|
|
self.install(builder)
|
|
|
|
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
class ZDoomBaseTarget(CMakeTarget):
|
|
|
|
def __init__(self, name=None):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
2020-11-29 10:25:11 +00:00
|
|
|
super().initialize(builder)
|
2020-11-23 11:22:07 +00:00
|
|
|
self._link_with_sound_libraries(builder)
|
2020-05-11 13:37:01 +00:00
|
|
|
|
2020-11-25 08:00:21 +00:00
|
|
|
opts = self.options
|
2020-05-07 13:00:20 +00:00
|
|
|
opts['PK3_QUIET_ZIPDIR'] = 'YES'
|
|
|
|
opts['DYN_OPENAL'] = 'NO'
|
|
|
|
# Explicit OpenAL configuration to avoid selection of Apple's framework
|
2020-12-01 11:03:39 +00:00
|
|
|
opts['OPENAL_INCLUDE_DIR'] = builder.include_path + 'AL'
|
2020-05-07 13:00:20 +00:00
|
|
|
opts['OPENAL_LIBRARY'] = builder.lib_path + 'libopenal.a'
|
2020-05-07 11:52:56 +00:00
|
|
|
|
2020-06-14 07:38:53 +00:00
|
|
|
|
|
|
|
class GZDoomTarget(ZDoomBaseTarget):
|
2020-11-23 11:22:07 +00:00
|
|
|
def __init__(self, name='gzdoom'):
|
|
|
|
super().__init__(name)
|
2020-06-14 07:38:53 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/coelckers/gzdoom.git')
|
|
|
|
|
|
|
|
def post_build(self, builder: 'Builder'):
|
|
|
|
# Put MoltenVK library into application bundle
|
2020-05-07 11:52:56 +00:00
|
|
|
molten_lib = 'libMoltenVK.dylib'
|
|
|
|
src_path = builder.lib_path + molten_lib
|
|
|
|
dst_path = builder.build_path
|
|
|
|
|
|
|
|
if builder.xcode:
|
|
|
|
# TODO: Support other configurations
|
|
|
|
dst_path += 'Debug' + os.sep
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
dst_path += self.name + '.app/Contents/MacOS' + os.sep
|
2020-05-07 11:52:56 +00:00
|
|
|
os.makedirs(dst_path, exist_ok=True)
|
|
|
|
|
|
|
|
dst_path += molten_lib
|
|
|
|
|
|
|
|
if not os.path.exists(dst_path):
|
|
|
|
copy_func = builder.xcode and os.symlink or shutil.copy
|
|
|
|
copy_func(src_path, dst_path)
|
|
|
|
|
2020-04-25 13:42:22 +00:00
|
|
|
|
2020-06-14 07:38:53 +00:00
|
|
|
class QZDoomTarget(GZDoomTarget):
|
2020-11-23 11:22:07 +00:00
|
|
|
def __init__(self, name='qzdoom'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/madame-rachelle/qzdoom.git')
|
2020-06-13 09:27:17 +00:00
|
|
|
|
|
|
|
|
2020-06-14 07:38:53 +00:00
|
|
|
class LZDoomTarget(ZDoomBaseTarget):
|
2020-11-23 11:22:07 +00:00
|
|
|
def __init__(self, name='lzdoom'):
|
|
|
|
super().__init__(name)
|
2020-06-13 09:27:17 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/drfrag666/gzdoom.git')
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
|
|
|
super().initialize(builder)
|
2020-06-21 07:10:32 +00:00
|
|
|
|
2020-11-25 08:00:21 +00:00
|
|
|
opts = self.options
|
2020-06-21 07:10:32 +00:00
|
|
|
opts['DYN_FLUIDSYNTH'] = 'NO'
|
|
|
|
opts['DYN_MPG123'] = 'NO'
|
|
|
|
opts['DYN_SNDFILE'] = 'NO'
|
|
|
|
|
2020-06-13 09:27:17 +00:00
|
|
|
|
2020-06-14 07:38:53 +00:00
|
|
|
class RazeTarget(ZDoomBaseTarget):
|
2020-11-23 11:22:07 +00:00
|
|
|
def __init__(self, name='raze'):
|
|
|
|
super().__init__(name)
|
2020-06-13 09:27:17 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/coelckers/Raze.git')
|
2020-06-13 09:27:17 +00:00
|
|
|
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
class ZandronumTarget(CMakeTarget):
|
|
|
|
def __init__(self, name='zandronum'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
# TODO: use official Mercurial repository
|
|
|
|
builder.checkout_git('https://github.com/TorrSamaho/zandronum.git')
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
2020-11-29 10:25:11 +00:00
|
|
|
super().initialize(builder)
|
|
|
|
|
2020-11-25 08:00:21 +00:00
|
|
|
opts = self.options
|
2020-06-13 09:27:17 +00:00
|
|
|
opts['CMAKE_EXE_LINKER_FLAGS'] = '-framework AudioUnit -framework Carbon -framework IOKit'
|
|
|
|
# TODO: Linking to FluidSynth is disabled because Zandronum doesn't support FluidSynth 2.x
|
|
|
|
# opts['DYN_FLUIDSYNTH'] = 'NO'
|
|
|
|
opts['FMOD_INCLUDE_DIR'] = builder.include_path
|
|
|
|
opts['FMOD_LIBRARY'] = builder.lib_path + 'libfmodex.dylib'
|
|
|
|
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
class AccTarget(CMakeTarget):
|
|
|
|
def __init__(self, name='acc'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/rheit/acc.git')
|
2020-11-05 10:40:00 +00:00
|
|
|
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
class PrBoomPlusTarget(CMakeTarget):
|
|
|
|
def __init__(self, name='prboom-plus'):
|
|
|
|
super().__init__(name)
|
2020-06-13 09:27:17 +00:00
|
|
|
self.src_root = 'prboom2'
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/coelckers/prboom-plus.git')
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
2020-11-29 10:25:11 +00:00
|
|
|
super().initialize(builder)
|
2020-11-23 11:22:07 +00:00
|
|
|
self._link_with_sound_libraries(builder)
|
2020-06-13 09:27:17 +00:00
|
|
|
|
|
|
|
extra_linker_args = ' -framework ForceFeedback -framework IOKit'
|
|
|
|
|
|
|
|
extra_libs = (
|
|
|
|
'mikmod',
|
|
|
|
'modplug',
|
|
|
|
'opusfile',
|
|
|
|
'webp',
|
|
|
|
)
|
|
|
|
|
|
|
|
for lib in extra_libs:
|
|
|
|
extra_linker_args += f' {builder.lib_path}lib{lib}.a'
|
|
|
|
|
2020-11-25 08:00:21 +00:00
|
|
|
opts = self.options
|
2020-06-13 09:27:17 +00:00
|
|
|
opts['CMAKE_C_FLAGS'] = '-D_FILE_OFFSET_BITS=64'
|
|
|
|
opts['CMAKE_EXE_LINKER_FLAGS'] += extra_linker_args
|
|
|
|
opts['CMAKE_POLICY_DEFAULT_CMP0056'] = 'NEW'
|
|
|
|
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
class ChocolateDoomTarget(CMakeTarget):
|
|
|
|
def __init__(self, name='chocolate-doom'):
|
|
|
|
super().__init__(name)
|
2020-06-13 10:43:33 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/chocolate-doom/chocolate-doom.git')
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
2020-11-29 10:25:11 +00:00
|
|
|
super().initialize(builder)
|
2020-11-23 11:22:07 +00:00
|
|
|
self._link_with_sound_libraries(builder)
|
2020-06-13 10:43:33 +00:00
|
|
|
|
|
|
|
extra_linker_args = ' -lc++ -framework Cocoa -framework ForceFeedback -framework IOKit'
|
|
|
|
|
|
|
|
extra_libs = (
|
|
|
|
'mikmod',
|
|
|
|
'modplug',
|
|
|
|
'opusfile',
|
|
|
|
'vorbisfile',
|
|
|
|
)
|
|
|
|
|
|
|
|
for lib in extra_libs:
|
|
|
|
extra_linker_args += f' {builder.lib_path}lib{lib}.a'
|
|
|
|
|
|
|
|
sdl2_include_dir = builder.include_path + 'SDL2'
|
|
|
|
|
2020-11-25 08:00:21 +00:00
|
|
|
opts = self.options
|
2020-06-13 10:43:33 +00:00
|
|
|
opts['SDL2_INCLUDE_DIR'] = sdl2_include_dir
|
|
|
|
opts['SDL2_LIBRARY'] = builder.lib_path + 'libSDL2.a'
|
|
|
|
opts['SDL2_MIXER_INCLUDE_DIR'] = sdl2_include_dir
|
|
|
|
opts['SDL2_MIXER_LIBRARY'] = builder.lib_path + 'libSDL2_mixer.a'
|
|
|
|
opts['SDL2_NET_INCLUDE_DIR'] = sdl2_include_dir
|
|
|
|
opts['SDL2_NET_LIBRARY'] = builder.lib_path + 'libSDL2_net.a'
|
|
|
|
opts['CMAKE_EXE_LINKER_FLAGS'] += extra_linker_args
|
|
|
|
|
|
|
|
|
2020-06-14 07:39:17 +00:00
|
|
|
class CrispyDoomTarget(ChocolateDoomTarget):
|
2020-11-23 11:22:07 +00:00
|
|
|
def __init__(self, name='crispy-doom'):
|
|
|
|
super().__init__(name)
|
2020-06-14 07:39:17 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/fabiangreffrath/crispy-doom.git')
|
2020-06-14 07:39:17 +00:00
|
|
|
|
2020-08-11 06:41:18 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
class DoomRetroTarget(CMakeTarget):
|
|
|
|
def __init__(self, name='doomretro'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/bradharding/doomretro.git')
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
2020-11-29 10:25:11 +00:00
|
|
|
super().initialize(builder)
|
2020-11-23 11:22:07 +00:00
|
|
|
self._link_with_sound_libraries(builder)
|
2020-08-11 06:41:18 +00:00
|
|
|
|
|
|
|
extra_linker_args = ' -lc++ -framework Cocoa -framework ForceFeedback -framework IOKit'
|
|
|
|
|
|
|
|
extra_libs = (
|
|
|
|
'mikmod',
|
|
|
|
'modplug',
|
|
|
|
'opusfile',
|
|
|
|
'vorbisfile',
|
|
|
|
'webp'
|
|
|
|
)
|
|
|
|
|
|
|
|
for lib in extra_libs:
|
|
|
|
extra_linker_args += f' {builder.lib_path}lib{lib}.a'
|
|
|
|
|
|
|
|
sdl2_include_dir = builder.include_path + 'SDL2'
|
|
|
|
|
2020-11-25 08:00:21 +00:00
|
|
|
opts = self.options
|
2020-08-11 06:41:18 +00:00
|
|
|
opts['SDL2_INCLUDE_DIRS'] = sdl2_include_dir
|
|
|
|
opts['SDL2_LIBRARIES'] = builder.lib_path + 'libSDL2.a'
|
|
|
|
opts['SDL2_FOUND'] = 'YES'
|
|
|
|
opts['SDL2_IMAGE_INCLUDE_DIRS'] = sdl2_include_dir
|
|
|
|
opts['SDL2_IMAGE_LIBRARIES'] = builder.lib_path + 'libSDL2_image.a'
|
|
|
|
opts['SDL2_IMAGE_FOUND'] = 'YES'
|
|
|
|
opts['SDL2_MIXER_INCLUDE_DIRS'] = sdl2_include_dir
|
|
|
|
opts['SDL2_MIXER_LIBRARIES'] = builder.lib_path + 'libSDL2_mixer.a'
|
|
|
|
opts['SDL2_MIXER_FOUND'] = 'YES'
|
|
|
|
opts['CMAKE_EXE_LINKER_FLAGS'] += extra_linker_args
|
|
|
|
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
class Doom64EXTarget(CMakeTarget):
|
|
|
|
def __init__(self, name='doom64ex'):
|
|
|
|
super().__init__(name)
|
2020-11-14 14:29:26 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/svkaiser/Doom64EX.git')
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
2020-11-29 10:25:11 +00:00
|
|
|
super().initialize(builder)
|
2020-11-23 11:22:07 +00:00
|
|
|
self._link_with_sound_libraries(builder)
|
2020-11-14 14:29:26 +00:00
|
|
|
|
2020-11-25 08:00:21 +00:00
|
|
|
opts = self.options
|
2020-11-14 14:29:26 +00:00
|
|
|
opts['ENABLE_SYSTEM_FLUIDSYNTH'] = 'YES'
|
|
|
|
opts['CMAKE_EXE_LINKER_FLAGS'] += ' -framework Cocoa -framework ForceFeedback -framework IOKit'
|
|
|
|
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
class DevilutionXTarget(CMakeTarget):
|
|
|
|
def __init__(self, name='devilutionx'):
|
|
|
|
super().__init__(name)
|
2020-06-14 08:27:32 +00:00
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://github.com/diasurgical/devilutionX.git')
|
|
|
|
|
|
|
|
def initialize(self, builder: 'Builder'):
|
2020-11-29 10:25:11 +00:00
|
|
|
super().initialize(builder)
|
2020-11-23 11:22:07 +00:00
|
|
|
self._link_with_sound_libraries(builder)
|
2020-06-14 08:27:32 +00:00
|
|
|
|
2020-08-02 10:29:13 +00:00
|
|
|
extra_linker_args = ' -framework Cocoa -framework ForceFeedback -framework IOKit'
|
2020-06-14 08:27:32 +00:00
|
|
|
|
|
|
|
extra_libs = (
|
2020-08-02 10:29:13 +00:00
|
|
|
'bz2',
|
2020-06-14 08:27:32 +00:00
|
|
|
'freetype',
|
|
|
|
'mikmod',
|
|
|
|
'modplug',
|
|
|
|
'opusfile',
|
|
|
|
'png',
|
|
|
|
'vorbisfile',
|
2020-08-02 10:29:13 +00:00
|
|
|
'z',
|
2020-06-14 08:27:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
for lib in extra_libs:
|
|
|
|
extra_linker_args += f' {builder.lib_path}lib{lib}.a'
|
|
|
|
|
2020-11-25 08:00:21 +00:00
|
|
|
opts = self.options
|
2020-06-14 08:27:32 +00:00
|
|
|
opts['CMAKE_EXE_LINKER_FLAGS'] += extra_linker_args
|
|
|
|
|
|
|
|
|
2020-11-25 09:23:18 +00:00
|
|
|
class QuakespasmTarget(MakeTarget):
|
2020-11-24 16:22:55 +00:00
|
|
|
def __init__(self, name='quakespasm'):
|
|
|
|
super().__init__(name)
|
2020-11-25 09:23:18 +00:00
|
|
|
self.src_root = 'Quake'
|
2020-11-24 16:22:55 +00:00
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.checkout_git('https://git.code.sf.net/p/quakespasm/quakespasm')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + os.sep + 'Quakespasm.txt')
|
|
|
|
|
2020-11-25 09:23:18 +00:00
|
|
|
def initialize(self, builder: 'Builder'):
|
2020-11-29 10:25:11 +00:00
|
|
|
super().initialize(builder)
|
|
|
|
|
2020-11-24 16:22:55 +00:00
|
|
|
# TODO: Use macOS specific Makefile which requires manual application bundle creation
|
2020-11-25 09:23:18 +00:00
|
|
|
opts = self.options
|
|
|
|
opts['USE_SDL2'] = '1'
|
|
|
|
opts['USE_CODEC_FLAC'] = '1'
|
|
|
|
opts['USE_CODEC_OPUS'] = '1'
|
|
|
|
opts['USE_CODEC_MIKMOD'] = '1'
|
|
|
|
opts['USE_CODEC_UMX'] = '1'
|
|
|
|
# TODO: Setup sdl2-config
|
|
|
|
opts['SDL_CFLAGS'] = f'-I{builder.include_path}SDL2'
|
|
|
|
opts['SDL_LIBS'] = f'{builder.lib_path}libSDL2.a'
|
|
|
|
opts['COMMON_LIBS'] = '-framework AudioToolbox -framework Carbon -framework Cocoa -framework CoreAudio' \
|
|
|
|
' -framework CoreVideo -framework ForceFeedback -framework IOKit -framework OpenGL'
|
|
|
|
|
|
|
|
self._update_env('CFLAGS', f'-I{builder.include_path}opus')
|
|
|
|
# Use main() alias to workaround executable linking without macOS launcher
|
|
|
|
self._update_env('LDFLAGS', f'-Wl,-alias -Wl,_SDL_main -Wl,_main')
|
|
|
|
|
|
|
|
for name in ('opus', 'opusfile'):
|
|
|
|
self._update_env('LDFLAGS', f'{builder.lib_path}lib{name}.a')
|
|
|
|
|
|
|
|
# TODO: Specify full paths for remaining libraries
|
2020-11-24 16:22:55 +00:00
|
|
|
|
2020-11-25 09:23:18 +00:00
|
|
|
def configure(self, builder: 'Builder'):
|
|
|
|
super().configure(builder)
|
|
|
|
|
2020-11-30 08:10:18 +00:00
|
|
|
# Copy linker flags from environment to command line argument, they would be overridden by Makefile otherwise
|
2020-11-25 09:23:18 +00:00
|
|
|
ldflags = 'LDFLAGS'
|
|
|
|
self.options[ldflags] = self.environment[ldflags]
|
2020-11-24 16:22:55 +00:00
|
|
|
|
|
|
|
|
2020-11-30 09:33:46 +00:00
|
|
|
class Bzip2Target(MakeTarget):
|
|
|
|
def __init__(self, name='bzip2'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz',
|
|
|
|
'ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'bzlib.h')
|
|
|
|
|
|
|
|
def configure(self, builder: 'Builder'):
|
|
|
|
super().configure(builder)
|
|
|
|
|
|
|
|
# Copy compiler flags from environment to command line argument, they would be overridden by Makefile otherwise
|
|
|
|
cflags = 'CFLAGS'
|
|
|
|
self.options[cflags] = self.environment[cflags] + ' -D_FILE_OFFSET_BITS=64 -O2'
|
|
|
|
|
|
|
|
def post_build(self, builder: 'Builder'):
|
|
|
|
self.options['PREFIX'] = self.prefix
|
|
|
|
self.install(builder, self.options)
|
|
|
|
|
|
|
|
|
2020-12-03 09:33:31 +00:00
|
|
|
class FfiTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='ffi'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://github.com/libffi/libffi/releases/download/v3.3/libffi-3.3.tar.gz',
|
|
|
|
'72fba7922703ddfa7a028d513ac15a85c8d54c8d67f55fa5a4802885dc652056')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'libffi.pc.in')
|
|
|
|
|
|
|
|
|
2020-12-01 11:00:53 +00:00
|
|
|
class FlacTarget(ConfigureMakeStaticDependencyTarget):
|
2020-11-30 09:34:22 +00:00
|
|
|
def __init__(self, name='flac'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://downloads.xiph.org/releases/flac/flac-1.3.3.tar.xz',
|
|
|
|
'213e82bd716c9de6db2f98bcadbc4c24c7e2efe8c75939a1a84e28539c4e1748')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'FLAC/flac.pc.in')
|
|
|
|
|
|
|
|
|
2020-12-03 10:12:58 +00:00
|
|
|
class IconvTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='iconv'):
|
|
|
|
super().__init__(name)
|
|
|
|
self.options['--enable-extra-encodings'] = 'yes'
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://ftp.gnu.org/gnu/libiconv/libiconv-1.16.tar.gz',
|
|
|
|
'e6a1b1b589654277ee790cce3734f07876ac4ccfaecbee8afa0b649cf529cc04')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'include/iconv.h.in')
|
|
|
|
|
|
|
|
|
2020-11-29 11:18:27 +00:00
|
|
|
class JpegTurboTarget(CMakeStaticDependencyTarget):
|
2020-11-29 10:33:21 +00:00
|
|
|
def __init__(self, name='jpeg-turbo'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://downloads.sourceforge.net/project/libjpeg-turbo/2.0.6/libjpeg-turbo-2.0.6.tar.gz',
|
|
|
|
'd74b92ac33b0e3657123ddcf6728788c90dc84dcb6a52013d758af3c4af481bb')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'turbojpeg.h')
|
|
|
|
|
|
|
|
|
2020-12-06 08:54:36 +00:00
|
|
|
class MesonTarget(Target):
|
|
|
|
def __init__(self, name='meson'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://github.com/mesonbuild/meson/releases/download/0.56.0/meson-0.56.0.tar.gz',
|
|
|
|
'291dd38ff1cd55fcfca8fc985181dd39be0d3e5826e5f0013bf867be40117213')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'meson.py')
|
|
|
|
|
|
|
|
def post_build(self, builder: 'Builder'):
|
|
|
|
dest_path = builder.deps_path + self.name + os.sep
|
|
|
|
lib_path = 'lib' + os.sep + self.name + os.sep
|
|
|
|
|
|
|
|
dest_lib_path = dest_path + lib_path
|
|
|
|
os.makedirs(dest_lib_path, exist_ok=True)
|
|
|
|
|
|
|
|
script = 'meson.py'
|
|
|
|
shutil.copy(builder.source_path + script, dest_lib_path)
|
|
|
|
|
|
|
|
module = 'mesonbuild'
|
|
|
|
module_path = dest_lib_path + module
|
|
|
|
if os.path.exists(module_path):
|
|
|
|
shutil.rmtree(module_path)
|
|
|
|
shutil.copytree(builder.source_path + module, module_path)
|
|
|
|
|
|
|
|
dest_bin_path = dest_path + 'bin' + os.sep
|
|
|
|
os.makedirs(dest_bin_path, exist_ok=True)
|
|
|
|
|
|
|
|
exe_path = dest_bin_path + self.name
|
|
|
|
if os.path.exists(exe_path):
|
|
|
|
os.unlink(exe_path)
|
|
|
|
os.symlink(os.pardir + os.sep + lib_path + script, exe_path)
|
|
|
|
|
|
|
|
|
2020-12-01 11:02:05 +00:00
|
|
|
class Mpg123Target(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='mpg123'):
|
|
|
|
super().__init__(name)
|
|
|
|
self.options['--enable-modules'] = 'no'
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://www.mpg123.de/download/mpg123-1.26.3.tar.bz2',
|
|
|
|
'30c998785a898f2846deefc4d17d6e4683a5a550b7eacf6ea506e30a7a736c6e')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'libmpg123.pc.in')
|
|
|
|
|
|
|
|
|
2020-11-29 11:18:27 +00:00
|
|
|
class NasmTarget(ConfigureMakeDependencyTarget):
|
2020-11-29 10:01:52 +00:00
|
|
|
def __init__(self, name='nasm'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/nasm-2.15.05.tar.xz',
|
|
|
|
'3caf6729c1073bf96629b57cee31eeb54f4f8129b01902c73428836550b30a3f')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'nasm.txt')
|
|
|
|
|
|
|
|
|
2020-11-29 11:18:27 +00:00
|
|
|
class OggTarget(ConfigureMakeStaticDependencyTarget):
|
2020-11-29 10:01:31 +00:00
|
|
|
def __init__(self, name='ogg'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://downloads.xiph.org/releases/ogg/libogg-1.3.4.tar.gz',
|
|
|
|
'fe5670640bd49e828d64d2879c31cb4dde9758681bb664f9bdbf159a01b0c76e')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'ogg.pc.in')
|
|
|
|
|
|
|
|
|
2020-12-03 11:13:16 +00:00
|
|
|
class NinjaTarget(MakeTarget):
|
|
|
|
def __init__(self, name='ninja'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://github.com/ninja-build/ninja/archive/v1.10.2.tar.gz',
|
|
|
|
'ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'src/ninja.cc')
|
|
|
|
|
|
|
|
def build(self, builder: 'Builder'):
|
|
|
|
args = ('python3', './configure.py', '--bootstrap', '--verbose')
|
|
|
|
subprocess.check_call(args, cwd=builder.build_path)
|
|
|
|
|
|
|
|
def post_build(self, builder: 'Builder'):
|
|
|
|
dest_path = builder.deps_path + self.name + os.sep + 'bin'
|
|
|
|
os.makedirs(dest_path, exist_ok=True)
|
|
|
|
shutil.copy(builder.build_path + self.name, dest_path)
|
|
|
|
|
|
|
|
|
2020-12-01 11:03:39 +00:00
|
|
|
class OpenALTarget(CMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='openal'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
opts = self.options
|
|
|
|
opts['ALSOFT_EXAMPLES'] = 'NO'
|
|
|
|
opts['ALSOFT_UTILS'] = 'NO'
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://openal-soft.org/openal-releases/openal-soft-1.21.0.tar.bz2',
|
|
|
|
'2916b4fc24e23b0271ce0b3468832ad8b6d8441b1830215b28cc4fee6cc89297')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'openal.pc.in')
|
|
|
|
|
|
|
|
|
2020-11-29 11:28:36 +00:00
|
|
|
class OpusTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='opus'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://archive.mozilla.org/pub/opus/opus-1.3.1.tar.gz',
|
|
|
|
'65b58e1e25b2a114157014736a3d9dfeaad8d41be1c8179866f144a2fb44ff9d')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'opus.pc.in')
|
|
|
|
|
|
|
|
|
2020-11-29 11:34:43 +00:00
|
|
|
class OpusFileTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='opusfile'):
|
|
|
|
super().__init__(name)
|
|
|
|
self.options['--enable-http'] = 'no'
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://downloads.xiph.org/releases/opus/opusfile-0.12.tar.gz',
|
|
|
|
'118d8601c12dd6a44f52423e68ca9083cc9f2bfe72da7a8c1acb22a80ae3550b')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'opusfile.pc.in')
|
|
|
|
|
|
|
|
|
2020-12-03 10:51:55 +00:00
|
|
|
class PcreTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='pcre'):
|
|
|
|
super().__init__(name)
|
|
|
|
self.options['--enable-unicode-properties'] = 'yes'
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.bz2',
|
|
|
|
'19108658b23b3ec5058edc9f66ac545ea19f9537234be1ec62b714c84399366d')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'pcre.h.in')
|
|
|
|
|
|
|
|
|
2020-12-01 11:03:52 +00:00
|
|
|
class SndFileTarget(CMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='sndfile'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
opts = self.options
|
|
|
|
opts['BUILD_REGTEST'] = 'NO'
|
|
|
|
opts['BUILD_TESTING'] = 'NO'
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://github.com/libsndfile/libsndfile/releases/download/v1.0.30/libsndfile-1.0.30.tar.bz2',
|
|
|
|
'9df273302c4fa160567f412e10cc4f76666b66281e7ba48370fb544e87e4611a')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'sndfile.pc.in')
|
|
|
|
|
|
|
|
|
2020-11-29 11:22:45 +00:00
|
|
|
class VorbisTarget(ConfigureMakeStaticDependencyTarget):
|
|
|
|
def __init__(self, name='vorbis'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://downloads.xiph.org/releases/vorbis/libvorbis-1.3.7.tar.xz',
|
|
|
|
'b33cc4934322bcbf6efcbacf49e3ca01aadbea4114ec9589d1b1e9d20f72954b')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'vorbis.pc.in')
|
|
|
|
|
|
|
|
|
2020-11-30 09:32:41 +00:00
|
|
|
class ZlibTarget(ConfigureMakeDependencyTarget):
|
|
|
|
def __init__(self, name='zlib'):
|
|
|
|
super().__init__(name)
|
|
|
|
self.options['--static'] = None
|
|
|
|
|
|
|
|
def prepare_source(self, builder: 'Builder'):
|
|
|
|
builder.download_source(
|
|
|
|
'https://zlib.net/zlib-1.2.11.tar.gz',
|
|
|
|
'c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1')
|
|
|
|
|
|
|
|
def detect(self, builder: 'Builder') -> bool:
|
|
|
|
return os.path.exists(builder.source_path + 'zlib.pc.in')
|
|
|
|
|
|
|
|
|
2020-12-05 10:40:10 +00:00
|
|
|
class CleanTarget(BaseTarget):
|
|
|
|
def __init__(self, name='clean'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def build(self, builder: 'Builder'):
|
|
|
|
args = ('git', 'clean', '-dfX')
|
|
|
|
subprocess.check_call(args, cwd=builder.root_path)
|
|
|
|
|
|
|
|
|
2020-11-23 13:24:01 +00:00
|
|
|
# Case insensitive dictionary class from
|
2020-11-24 15:51:08 +00:00
|
|
|
# https://github.com/psf/requests/blob/v2.25.0/requests/structures.py
|
2020-11-23 13:24:01 +00:00
|
|
|
|
|
|
|
class CaseInsensitiveDict(collections.abc.MutableMapping):
|
|
|
|
"""A case-insensitive ``dict``-like object.
|
|
|
|
Implements all methods and operations of
|
|
|
|
``MutableMapping`` as well as dict's ``copy``. Also
|
|
|
|
provides ``lower_items``.
|
|
|
|
All keys are expected to be strings. The structure remembers the
|
|
|
|
case of the last key to be set, and ``iter(instance)``,
|
|
|
|
``keys()``, ``items()``, ``iterkeys()``, and ``iteritems()``
|
|
|
|
will contain case-sensitive keys. However, querying and contains
|
|
|
|
testing is case insensitive::
|
|
|
|
cid = CaseInsensitiveDict()
|
|
|
|
cid['Accept'] = 'application/json'
|
|
|
|
cid['aCCEPT'] == 'application/json' # True
|
|
|
|
list(cid) == ['Accept'] # True
|
|
|
|
For example, ``headers['content-encoding']`` will return the
|
|
|
|
value of a ``'Content-Encoding'`` response header, regardless
|
|
|
|
of how the header name was originally stored.
|
|
|
|
If the constructor, ``.update``, or equality comparison
|
|
|
|
operations are given keys that have equal ``.lower()``s, the
|
|
|
|
behavior is undefined.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, data=None, **kwargs):
|
|
|
|
self._store = collections.OrderedDict()
|
|
|
|
if data is None:
|
|
|
|
data = {}
|
|
|
|
self.update(data, **kwargs)
|
|
|
|
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
# Use the lowercased key for lookups, but store the actual
|
|
|
|
# key alongside the value.
|
|
|
|
self._store[key.lower()] = (key, value)
|
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
return self._store[key.lower()][1]
|
|
|
|
|
|
|
|
def __delitem__(self, key):
|
|
|
|
del self._store[key.lower()]
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return (casedkey for casedkey, mappedvalue in self._store.values())
|
|
|
|
|
|
|
|
def __len__(self):
|
|
|
|
return len(self._store)
|
|
|
|
|
|
|
|
def lower_items(self):
|
|
|
|
"""Like iteritems(), but with all lowercase keys."""
|
|
|
|
return (
|
|
|
|
(lowerkey, keyval[1])
|
|
|
|
for (lowerkey, keyval)
|
|
|
|
in self._store.items()
|
|
|
|
)
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
if isinstance(other, collections.abc.Mapping):
|
|
|
|
other = CaseInsensitiveDict(other)
|
|
|
|
else:
|
|
|
|
return NotImplemented
|
|
|
|
# Compare insensitively
|
|
|
|
return dict(self.lower_items()) == dict(other.lower_items())
|
|
|
|
|
|
|
|
# Copy is required
|
|
|
|
def copy(self):
|
|
|
|
return CaseInsensitiveDict(self._store.values())
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return str(dict(self.items()))
|
|
|
|
|
|
|
|
|
2020-05-07 10:32:30 +00:00
|
|
|
class Builder(object):
|
|
|
|
def __init__(self, args: list):
|
2020-06-13 09:27:17 +00:00
|
|
|
self._create_targets()
|
|
|
|
|
2020-05-07 10:32:30 +00:00
|
|
|
self.root_path = os.path.dirname(os.path.abspath(__file__)) + os.sep
|
|
|
|
self.deps_path = self.root_path + 'deps' + os.sep
|
|
|
|
self.prefix_path = self.root_path + 'prefix' + os.sep
|
2020-06-27 10:26:26 +00:00
|
|
|
self.bin_path = self.prefix_path + 'bin' + os.sep
|
2020-05-07 10:32:30 +00:00
|
|
|
self.include_path = self.prefix_path + 'include' + os.sep
|
|
|
|
self.lib_path = self.prefix_path + 'lib' + os.sep
|
2020-11-29 10:01:31 +00:00
|
|
|
self.root_source_path = self.root_path + 'source' + os.sep
|
2020-12-05 13:29:55 +00:00
|
|
|
self.patch_path = self.root_path + 'patch' + os.sep
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-06-13 09:27:17 +00:00
|
|
|
arguments = self._parse_arguments(args)
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-05-07 10:32:30 +00:00
|
|
|
self.xcode = arguments.xcode
|
|
|
|
self.checkout_commit = arguments.checkout_commit
|
|
|
|
self.build_path = arguments.build_path
|
|
|
|
self.sdk_path = arguments.sdk_path
|
2020-06-27 15:09:13 +00:00
|
|
|
self.os_version = arguments.os_version
|
2020-08-11 15:22:42 +00:00
|
|
|
self.verbose = arguments.verbose
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-05-07 10:32:30 +00:00
|
|
|
if arguments.target:
|
2020-06-13 09:27:17 +00:00
|
|
|
self.target = self.targets[arguments.target]
|
2020-11-29 10:01:31 +00:00
|
|
|
self.source_path = self.root_source_path + self.target.name
|
2020-04-25 14:53:43 +00:00
|
|
|
else:
|
2020-05-07 10:32:30 +00:00
|
|
|
assert arguments.source_path
|
|
|
|
self.source_path = arguments.source_path
|
2020-06-13 09:27:17 +00:00
|
|
|
self._detect_target()
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-05-07 10:32:30 +00:00
|
|
|
if not self.build_path:
|
|
|
|
self.build_path = self.root_path + 'build' + os.sep + self.target.name + \
|
|
|
|
os.sep + (self.xcode and 'xcode' or 'make')
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-05-07 10:32:30 +00:00
|
|
|
self.source_path += os.sep
|
|
|
|
self.build_path += os.sep
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-11-24 16:10:57 +00:00
|
|
|
self.jobs = arguments.jobs and arguments.jobs or \
|
|
|
|
subprocess.check_output(['sysctl', '-n', 'hw.ncpu']).decode('ascii').strip()
|
|
|
|
|
2020-11-30 09:32:06 +00:00
|
|
|
if not self.sdk_path:
|
|
|
|
sdk_probe_path = f'{self.root_path}sdk{os.sep}MacOSX{self.os_version}.sdk'
|
|
|
|
if os.path.exists(sdk_probe_path):
|
|
|
|
self.sdk_path = sdk_probe_path
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
self.target.initialize(self)
|
2020-05-07 13:00:20 +00:00
|
|
|
|
2020-05-07 11:52:56 +00:00
|
|
|
def run(self):
|
|
|
|
self._create_prefix_directory()
|
2020-11-23 11:22:07 +00:00
|
|
|
|
|
|
|
target = self.target
|
|
|
|
target.prepare_source(self)
|
|
|
|
target.configure(self)
|
|
|
|
target.build(self)
|
|
|
|
target.post_build(self)
|
2020-05-07 11:52:56 +00:00
|
|
|
|
|
|
|
def _create_prefix_directory(self):
|
2020-11-24 16:22:03 +00:00
|
|
|
os.makedirs(self.prefix_path, exist_ok=True)
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-11-24 16:22:03 +00:00
|
|
|
cleanup = True
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-05-07 10:32:30 +00:00
|
|
|
for dep in os.scandir(self.deps_path):
|
2020-11-24 16:22:03 +00:00
|
|
|
Builder.symlink_directory(dep.path, self.prefix_path, cleanup)
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-11-24 16:22:03 +00:00
|
|
|
# Do symlink cleanup only once
|
|
|
|
cleanup = False
|
2020-04-25 13:42:22 +00:00
|
|
|
|
2020-11-24 16:22:03 +00:00
|
|
|
@staticmethod
|
|
|
|
def symlink_directory(src_path: str, dst_path: str, cleanup=True):
|
|
|
|
src_abspath = os.path.abspath(src_path)
|
|
|
|
dst_abspath = os.path.abspath(dst_path)
|
2020-06-27 10:24:59 +00:00
|
|
|
|
2020-11-24 16:22:03 +00:00
|
|
|
if cleanup:
|
|
|
|
# Delete obsolete symbolic links
|
|
|
|
for root, _, files in os.walk(dst_abspath, followlinks=True):
|
|
|
|
for filename in files:
|
|
|
|
file_path = root + os.sep + filename
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-11-24 16:22:03 +00:00
|
|
|
if os.path.islink(file_path) and not os.path.exists(file_path):
|
|
|
|
os.remove(file_path)
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-11-24 16:22:03 +00:00
|
|
|
# Create symbolic links if needed
|
|
|
|
for entry in os.scandir(src_abspath):
|
|
|
|
dst_subpath = entry.path.replace(src_abspath, dst_abspath)
|
|
|
|
if entry.is_dir():
|
|
|
|
os.makedirs(dst_subpath, exist_ok=True)
|
|
|
|
Builder.symlink_directory(entry.path, dst_subpath, cleanup=False)
|
|
|
|
elif not os.path.exists(dst_subpath):
|
|
|
|
os.symlink(entry.path, dst_subpath)
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-06-13 09:27:17 +00:00
|
|
|
def _detect_target(self):
|
2020-11-23 11:22:07 +00:00
|
|
|
for name, target in self.targets.items():
|
|
|
|
if target.detect(self):
|
|
|
|
self.target = self.targets[name]
|
2020-05-07 10:32:30 +00:00
|
|
|
break
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
assert self.target
|
2020-06-13 09:27:17 +00:00
|
|
|
|
|
|
|
def _create_targets(self):
|
|
|
|
targets = (
|
|
|
|
GZDoomTarget(),
|
|
|
|
QZDoomTarget(),
|
|
|
|
LZDoomTarget(),
|
|
|
|
RazeTarget(),
|
|
|
|
ZandronumTarget(),
|
2020-11-05 10:40:00 +00:00
|
|
|
AccTarget(),
|
2020-06-13 09:27:17 +00:00
|
|
|
PrBoomPlusTarget(),
|
2020-06-13 10:43:33 +00:00
|
|
|
ChocolateDoomTarget(),
|
2020-06-14 07:39:17 +00:00
|
|
|
CrispyDoomTarget(),
|
2020-08-11 06:41:18 +00:00
|
|
|
DoomRetroTarget(),
|
2020-11-14 14:29:26 +00:00
|
|
|
Doom64EXTarget(),
|
2020-06-14 08:27:32 +00:00
|
|
|
DevilutionXTarget(),
|
2020-11-24 16:22:55 +00:00
|
|
|
QuakespasmTarget(),
|
2020-11-29 10:01:31 +00:00
|
|
|
|
|
|
|
# Dependencies
|
2020-11-30 09:33:46 +00:00
|
|
|
Bzip2Target(),
|
2020-12-03 09:33:31 +00:00
|
|
|
FfiTarget(),
|
2020-12-01 11:00:53 +00:00
|
|
|
FlacTarget(),
|
2020-12-03 10:12:58 +00:00
|
|
|
IconvTarget(),
|
2020-11-29 10:33:21 +00:00
|
|
|
JpegTurboTarget(),
|
2020-12-06 08:54:36 +00:00
|
|
|
MesonTarget(),
|
2020-12-01 11:02:05 +00:00
|
|
|
Mpg123Target(),
|
2020-11-29 10:01:52 +00:00
|
|
|
NasmTarget(),
|
2020-12-03 11:13:16 +00:00
|
|
|
NinjaTarget(),
|
2020-11-29 10:01:31 +00:00
|
|
|
OggTarget(),
|
2020-12-01 11:03:39 +00:00
|
|
|
OpenALTarget(),
|
2020-11-29 11:28:36 +00:00
|
|
|
OpusTarget(),
|
2020-11-29 11:34:43 +00:00
|
|
|
OpusFileTarget(),
|
2020-12-03 10:51:55 +00:00
|
|
|
PcreTarget(),
|
2020-12-01 11:03:52 +00:00
|
|
|
SndFileTarget(),
|
2020-11-29 11:22:45 +00:00
|
|
|
VorbisTarget(),
|
2020-11-30 09:32:41 +00:00
|
|
|
ZlibTarget(),
|
2020-12-05 10:40:10 +00:00
|
|
|
|
|
|
|
# Special
|
|
|
|
CleanTarget(),
|
2020-06-13 09:27:17 +00:00
|
|
|
)
|
|
|
|
|
2020-11-23 13:24:01 +00:00
|
|
|
self.targets = CaseInsensitiveDict({target.name: target for target in targets})
|
2020-06-13 09:27:17 +00:00
|
|
|
|
|
|
|
def _parse_arguments(self, args: list):
|
|
|
|
assert self.targets
|
2020-05-07 10:32:30 +00:00
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(description='*ZDoom binary dependencies for macOS')
|
|
|
|
|
|
|
|
group = parser.add_mutually_exclusive_group(required=True)
|
2020-06-13 09:27:17 +00:00
|
|
|
group.add_argument('--target', choices=self.targets.keys(), help='target to build')
|
2020-05-07 10:32:30 +00:00
|
|
|
group.add_argument('--source-path', metavar='path', help='path to target\'s source code')
|
|
|
|
|
|
|
|
group = parser.add_argument_group()
|
|
|
|
group.add_argument('--xcode', action='store_true', help='generate Xcode project instead of build')
|
|
|
|
group.add_argument('--checkout-commit', metavar='commit',
|
|
|
|
help='target\'s source code commit or tag to checkout')
|
|
|
|
group.add_argument('--build-path', metavar='path', help='target build path')
|
|
|
|
group.add_argument('--sdk-path', metavar='path', help='path to macOS SDK')
|
2020-06-27 15:09:13 +00:00
|
|
|
group.add_argument('--os-version', metavar='version', default='10.9', help='macOS deployment version')
|
2020-08-11 15:22:42 +00:00
|
|
|
group.add_argument('--verbose', action='store_true', help='enable verbose build output')
|
2020-11-24 16:10:57 +00:00
|
|
|
group.add_argument('--jobs', help='number of parallel compilation jobs')
|
2020-05-07 10:32:30 +00:00
|
|
|
|
|
|
|
return parser.parse_args(args)
|
|
|
|
|
2020-11-23 11:22:07 +00:00
|
|
|
def checkout_git(self, url: str):
|
|
|
|
if not os.path.exists(self.source_path):
|
|
|
|
args = ('git', 'clone', '--recurse-submodules', url, self.source_path)
|
|
|
|
subprocess.check_call(args, cwd=self.root_path)
|
|
|
|
|
|
|
|
if self.checkout_commit:
|
|
|
|
args = ['git', 'checkout', self.checkout_commit]
|
|
|
|
subprocess.check_call(args, cwd=self.source_path)
|
|
|
|
|
2020-11-29 09:55:50 +00:00
|
|
|
def download_source(self, url: str, checksum: str):
|
|
|
|
source_path = self.source_path
|
|
|
|
os.makedirs(source_path, exist_ok=True)
|
|
|
|
|
|
|
|
filename = source_path + url.rsplit(os.sep, 1)[1]
|
|
|
|
|
|
|
|
if os.path.exists(filename):
|
|
|
|
# Read existing source package
|
|
|
|
with open(filename, 'rb') as f:
|
|
|
|
data = f.read()
|
|
|
|
else:
|
|
|
|
# Download package with source code
|
|
|
|
response = urllib.request.urlopen(url)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with open(filename, 'wb') as f:
|
|
|
|
data = response.read()
|
|
|
|
f.write(data)
|
|
|
|
|
|
|
|
except IOError:
|
|
|
|
os.unlink(filename)
|
|
|
|
raise
|
|
|
|
|
|
|
|
# Verify package checksum
|
|
|
|
file_hasher = hashlib.sha256()
|
|
|
|
file_hasher.update(data)
|
|
|
|
file_checksum = file_hasher.hexdigest()
|
|
|
|
|
|
|
|
if file_checksum != checksum:
|
|
|
|
os.unlink(filename)
|
|
|
|
raise Exception(f'Checksum of {filename} does not match, expected: {checksum}, actual: {file_checksum}')
|
|
|
|
|
|
|
|
# Figure out path to extracted source code
|
|
|
|
filepaths = subprocess.check_output(['tar', '-tf', filename]).decode("utf-8")
|
|
|
|
filepaths = filepaths.split('\n')
|
|
|
|
first_path_component = None
|
|
|
|
|
|
|
|
for filepath in filepaths:
|
|
|
|
if os.sep in filepath:
|
|
|
|
first_path_component = filepath[:filepath.find(os.sep)]
|
|
|
|
break
|
|
|
|
|
|
|
|
if not first_path_component:
|
|
|
|
raise Exception("Failed to figure out source code path for " + filename)
|
|
|
|
|
2020-12-05 13:29:55 +00:00
|
|
|
extract_path = source_path + first_path_component + os.sep
|
2020-11-29 09:55:50 +00:00
|
|
|
|
|
|
|
if not os.path.exists(extract_path):
|
|
|
|
# Extract source code package
|
|
|
|
try:
|
|
|
|
subprocess.check_call(['tar', '-xf', filename], cwd=source_path)
|
|
|
|
except (IOError, subprocess.CalledProcessError):
|
|
|
|
shutil.rmtree(extract_path, ignore_errors=True)
|
|
|
|
raise
|
|
|
|
|
2020-12-05 13:29:55 +00:00
|
|
|
# Apply patch if exists
|
|
|
|
patch_path = self.patch_path + self.target.name + '.patch'
|
|
|
|
|
|
|
|
if os.path.exists(patch_path):
|
|
|
|
# Check if patch is already applied
|
|
|
|
test_arg = '--dry-run'
|
|
|
|
args = ['patch', test_arg, '--strip=1', '--input=' + patch_path]
|
|
|
|
|
|
|
|
if subprocess.call(args, cwd=extract_path) == 0:
|
|
|
|
# Patch wasn't applied yet, do it now
|
|
|
|
args.remove(test_arg)
|
|
|
|
subprocess.check_call(args, cwd=extract_path)
|
|
|
|
|
2020-11-29 09:55:50 +00:00
|
|
|
# Adjust source and build paths according to extracted source code
|
2020-12-05 13:29:55 +00:00
|
|
|
self.source_path = extract_path
|
2020-11-29 09:55:50 +00:00
|
|
|
self.build_path = self.build_path + first_path_component + os.sep
|
|
|
|
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2020-05-07 11:52:56 +00:00
|
|
|
Builder(sys.argv[1:]).run()
|