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-04-26 08:42:30 +00:00
|
|
|
import re
|
2020-04-25 10:05:12 +00:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
2020-04-26 13:29:07 +00:00
|
|
|
import tarfile
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Configuration(object):
|
|
|
|
def __init__(self):
|
|
|
|
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
|
|
|
|
self.include_path = self.prefix_path + 'include' + os.sep
|
|
|
|
self.lib_path = self.prefix_path + 'lib' + os.sep
|
|
|
|
|
|
|
|
self.target = None
|
|
|
|
self.xcode = False
|
2020-04-26 08:16:25 +00:00
|
|
|
self.checkout_commit = None
|
2020-04-25 13:42:22 +00:00
|
|
|
self.generate = True
|
2020-04-25 14:53:43 +00:00
|
|
|
self.rebuild_prefix = False
|
2020-04-26 13:29:07 +00:00
|
|
|
self.create_package = False
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
self.source_path = None
|
|
|
|
self.build_path = None
|
2020-04-25 13:42:22 +00:00
|
|
|
self.sdk_path = None
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Target(object):
|
2020-04-25 13:42:22 +00:00
|
|
|
def __init__(self, name: str, url: str, post_build=None):
|
2020-04-25 10:05:12 +00:00
|
|
|
self.name = name
|
|
|
|
self.url = url
|
2020-04-25 13:42:22 +00:00
|
|
|
self.post_build = post_build
|
|
|
|
|
|
|
|
|
|
|
|
def copy_moltenvk(config: Configuration):
|
|
|
|
molten_lib = 'libMoltenVK.dylib'
|
|
|
|
src_path = config.lib_path + molten_lib
|
|
|
|
dst_path = config.build_path
|
|
|
|
|
|
|
|
if config.xcode:
|
|
|
|
dst_path += 'Debug' + os.sep
|
|
|
|
|
|
|
|
dst_path += config.target.name + '.app/Contents/MacOS' + os.sep
|
|
|
|
os.makedirs(dst_path, exist_ok=True)
|
|
|
|
|
|
|
|
dst_path += molten_lib
|
|
|
|
|
|
|
|
if not os.path.exists(dst_path):
|
|
|
|
copy_func = config.xcode and os.symlink or shutil.copy
|
|
|
|
copy_func(src_path, dst_path)
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
|
2020-04-26 08:42:30 +00:00
|
|
|
def detect_target(config: Configuration, targets: dict):
|
|
|
|
cmakelists_path = config.source_path + os.sep + 'CMakeLists.txt'
|
|
|
|
project_name = None
|
|
|
|
|
|
|
|
for line in open(cmakelists_path).readlines():
|
|
|
|
match = re.search(r'project\s*\(\s*(\w+)\s*\)', line, re.IGNORECASE)
|
|
|
|
if match:
|
|
|
|
project_name = match.group(1).lower()
|
|
|
|
break
|
|
|
|
|
|
|
|
assert project_name
|
|
|
|
config.target = targets[project_name]
|
|
|
|
|
|
|
|
|
2020-04-25 14:32:12 +00:00
|
|
|
def create_configuration(args: list):
|
2020-04-25 10:05:12 +00:00
|
|
|
target_list = (
|
2020-04-25 13:42:22 +00:00
|
|
|
Target('gzdoom', 'https://github.com/coelckers/gzdoom.git', copy_moltenvk),
|
2020-04-26 09:54:22 +00:00
|
|
|
Target('qzdoom', 'https://github.com/madame-rachelle/qzdoom.git', copy_moltenvk),
|
|
|
|
Target('lzdoom', 'https://github.com/drfrag666/gzdoom.git'),
|
2020-04-25 10:05:12 +00:00
|
|
|
Target('raze', 'https://github.com/coelckers/Raze.git'),
|
|
|
|
)
|
|
|
|
targets = {target.name: target for target in target_list}
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(description='*ZDoom binary dependencies for macOS')
|
2020-04-26 08:42:30 +00:00
|
|
|
|
|
|
|
group = parser.add_mutually_exclusive_group(required=True)
|
|
|
|
group.add_argument('--target', choices=targets.keys(), help='target to build')
|
|
|
|
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')
|
|
|
|
group.add_argument('--skip-generate', action='store_true', help='do not generate build environment')
|
2020-04-26 13:29:07 +00:00
|
|
|
group.add_argument('--create-package', action='store_true', help='create deployment package')
|
2020-04-26 08:42:30 +00:00
|
|
|
group.add_argument('--rebuild-prefix', action='store_true', help='rebuild prefix path')
|
|
|
|
|
2020-04-25 14:32:12 +00:00
|
|
|
arguments = parser.parse_args(args)
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
config = Configuration()
|
|
|
|
config.xcode = arguments.xcode
|
2020-04-26 08:16:25 +00:00
|
|
|
config.checkout_commit = arguments.checkout_commit
|
2020-04-25 13:42:22 +00:00
|
|
|
config.generate = not arguments.skip_generate
|
2020-04-25 14:53:43 +00:00
|
|
|
config.rebuild_prefix = arguments.rebuild_prefix
|
2020-04-25 13:42:22 +00:00
|
|
|
config.build_path = arguments.build_path
|
|
|
|
config.sdk_path = arguments.sdk_path
|
2020-04-26 13:29:07 +00:00
|
|
|
config.create_package = arguments.create_package
|
2020-04-25 13:42:22 +00:00
|
|
|
|
2020-04-26 08:42:30 +00:00
|
|
|
if arguments.target:
|
|
|
|
config.target = targets[arguments.target]
|
2020-05-03 12:59:56 +00:00
|
|
|
config.source_path = config.root_path + 'source' + os.sep + config.target.name
|
2020-04-26 08:42:30 +00:00
|
|
|
else:
|
|
|
|
assert arguments.source_path
|
|
|
|
config.source_path = arguments.source_path
|
|
|
|
detect_target(config, targets)
|
2020-04-25 13:42:22 +00:00
|
|
|
|
|
|
|
if not config.build_path:
|
|
|
|
config.build_path = config.root_path + 'build' + os.sep + config.target.name + \
|
|
|
|
os.sep + (config.xcode and 'xcode' or 'make')
|
|
|
|
|
|
|
|
config.source_path += os.sep
|
|
|
|
config.build_path += os.sep
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
return config
|
|
|
|
|
|
|
|
|
|
|
|
def create_prefix_directory(config: Configuration):
|
|
|
|
if os.path.exists(config.prefix_path):
|
2020-04-25 14:53:43 +00:00
|
|
|
if config.rebuild_prefix:
|
|
|
|
shutil.rmtree(config.prefix_path)
|
|
|
|
else:
|
|
|
|
return
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
os.makedirs(config.include_path)
|
|
|
|
os.makedirs(config.lib_path)
|
|
|
|
|
|
|
|
for dep in os.scandir(config.deps_path):
|
|
|
|
if not dep.is_dir():
|
|
|
|
continue
|
|
|
|
|
|
|
|
dep_include_path = dep.path + os.sep + 'include' + os.sep
|
|
|
|
dep_lib_path = dep.path + os.sep + 'lib' + os.sep
|
|
|
|
|
|
|
|
if not os.path.exists(dep_include_path) or not os.path.exists(dep_lib_path):
|
|
|
|
continue
|
|
|
|
|
|
|
|
for dep_include in os.scandir(dep_include_path):
|
|
|
|
os.symlink(dep_include.path, config.include_path + dep_include.name)
|
|
|
|
|
|
|
|
for dep_lib in os.scandir(dep_lib_path):
|
|
|
|
os.symlink(dep_lib.path, config.lib_path + dep_lib.name)
|
|
|
|
|
|
|
|
|
|
|
|
def prepare_source(config: Configuration):
|
|
|
|
if not os.path.exists(config.source_path):
|
|
|
|
args = ('git', 'clone', config.target.url, config.source_path)
|
|
|
|
subprocess.check_call(args, cwd=config.root_path)
|
|
|
|
|
2020-04-26 08:16:25 +00:00
|
|
|
if config.checkout_commit:
|
|
|
|
args = ['git', 'checkout', config.checkout_commit]
|
2020-04-25 13:42:22 +00:00
|
|
|
subprocess.check_call(args, cwd=config.source_path)
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
def generate_cmake(config: Configuration):
|
2020-04-25 13:42:22 +00:00
|
|
|
if not config.generate:
|
|
|
|
return
|
|
|
|
|
2020-04-25 10:05:12 +00:00
|
|
|
environ = os.environ
|
|
|
|
environ['PATH'] = environ['PATH'] + os.pathsep + '/Applications/CMake.app/Contents/bin'
|
|
|
|
|
2020-04-25 13:42:22 +00:00
|
|
|
os.makedirs(config.build_path, exist_ok=True)
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
extra_libs = (
|
|
|
|
'mpg123',
|
|
|
|
|
|
|
|
# FluidSynth with dependencies
|
|
|
|
'fluidsynth',
|
|
|
|
'instpatch-1.0',
|
|
|
|
'glib-2.0',
|
|
|
|
'gobject-2.0',
|
|
|
|
'intl',
|
|
|
|
'ffi',
|
|
|
|
'pcre',
|
|
|
|
|
|
|
|
# Sndfile with dependencies
|
|
|
|
'sndfile',
|
|
|
|
'ogg',
|
|
|
|
'vorbis',
|
|
|
|
'vorbisenc',
|
|
|
|
'FLAC',
|
|
|
|
'opus',
|
|
|
|
)
|
|
|
|
|
|
|
|
linker_args = '-framework AudioUnit -framework AudioToolbox -framework Carbon -framework CoreAudio ' \
|
|
|
|
'-framework CoreMIDI -framework CoreVideo -framework ForceFeedback -liconv'
|
|
|
|
|
|
|
|
for lib in extra_libs:
|
|
|
|
linker_args += f' {config.lib_path}lib{lib}.a'
|
|
|
|
|
2020-04-25 13:42:22 +00:00
|
|
|
args = [
|
2020-04-25 10:05:12 +00:00
|
|
|
'cmake',
|
|
|
|
config.xcode and '-GXcode' or '-GUnix Makefiles',
|
|
|
|
'-DCMAKE_BUILD_TYPE=Release',
|
|
|
|
'-DCMAKE_PREFIX_PATH=' + config.prefix_path,
|
|
|
|
'-DCMAKE_EXE_LINKER_FLAGS=' + linker_args,
|
|
|
|
'-DFORCE_INTERNAL_ZLIB=YES',
|
|
|
|
'-DFORCE_INTERNAL_BZIP2=YES',
|
|
|
|
'-DPK3_QUIET_ZIPDIR=YES',
|
|
|
|
'-DDYN_OPENAL=NO',
|
|
|
|
# Explicit OpenAL configuration to avoid selection of Apple's framework
|
|
|
|
'-DOPENAL_INCLUDE_DIR=' + config.include_path,
|
|
|
|
'-DOPENAL_LIBRARY=' + config.lib_path + 'libopenal.a',
|
2020-04-25 13:42:22 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
if config.sdk_path:
|
|
|
|
args.append('-DCMAKE_OSX_SYSROOT=' + config.sdk_path)
|
|
|
|
|
|
|
|
args.append(config.source_path)
|
|
|
|
|
2020-04-25 10:05:12 +00:00
|
|
|
subprocess.check_call(args, cwd=config.build_path, env=environ)
|
|
|
|
|
|
|
|
|
|
|
|
def build_target(config: Configuration):
|
|
|
|
if config.xcode:
|
|
|
|
# TODO: support case-sensitive file system
|
|
|
|
args = ('open', config.target.name + '.xcodeproj')
|
|
|
|
else:
|
|
|
|
jobs = subprocess.check_output(['sysctl', '-n', 'hw.ncpu']).decode('ascii').strip()
|
|
|
|
args = ('make', '-j', jobs)
|
|
|
|
|
|
|
|
subprocess.check_call(args, cwd=config.build_path)
|
|
|
|
|
2020-04-25 13:42:22 +00:00
|
|
|
if config.target.post_build:
|
|
|
|
config.target.post_build(config)
|
|
|
|
|
2020-04-25 10:05:12 +00:00
|
|
|
|
2020-04-26 13:29:07 +00:00
|
|
|
def create_package(config: Configuration):
|
|
|
|
if not config.create_package or config.xcode:
|
|
|
|
return
|
|
|
|
|
|
|
|
args = ['git', 'describe', '--tags']
|
|
|
|
version = subprocess.check_output(args, cwd=config.source_path).decode('ascii').strip()
|
|
|
|
package_path = f'{config.build_path}{config.target.name}-{version}.tar.bz2'
|
|
|
|
name_pos = len(config.build_path) - 1
|
|
|
|
|
|
|
|
if os.path.exists(package_path):
|
|
|
|
os.remove(package_path)
|
|
|
|
|
|
|
|
def tar_filter(tarinfo):
|
|
|
|
tarinfo.name = tarinfo.name[name_pos:]
|
|
|
|
tarinfo.uname = tarinfo.gname = "root"
|
|
|
|
tarinfo.uid = tarinfo.gid = 0
|
|
|
|
return tarinfo
|
|
|
|
|
|
|
|
with tarfile.open(package_path, 'w:bz2') as package:
|
|
|
|
bundle_path = config.build_path + config.target.name + '.app'
|
|
|
|
package.add(bundle_path, filter=tar_filter)
|
|
|
|
|
|
|
|
|
2020-04-25 14:32:12 +00:00
|
|
|
def build(args: list):
|
|
|
|
config = create_configuration(args)
|
2020-04-25 10:05:12 +00:00
|
|
|
create_prefix_directory(config)
|
|
|
|
|
|
|
|
prepare_source(config)
|
|
|
|
generate_cmake(config)
|
|
|
|
build_target(config)
|
2020-04-26 13:29:07 +00:00
|
|
|
create_package(config)
|
2020-04-25 10:05:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2020-04-25 14:32:12 +00:00
|
|
|
build(sys.argv[1:])
|