2021-05-01 08:54:52 +00:00
|
|
|
#
|
|
|
|
# Helper module to build macOS version of various source ports
|
2024-01-02 08:55:22 +00:00
|
|
|
# Copyright (C) 2020-2024 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/>.
|
|
|
|
#
|
|
|
|
|
2023-03-21 10:52:54 +00:00
|
|
|
import os
|
2021-07-03 12:39:16 +00:00
|
|
|
import pathlib
|
2023-03-21 10:52:54 +00:00
|
|
|
import platform
|
|
|
|
import subprocess
|
2021-05-01 08:54:52 +00:00
|
|
|
import zipapp
|
|
|
|
|
2023-03-21 10:52:54 +00:00
|
|
|
from ..state import BuildState
|
|
|
|
from . import base
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
2023-03-21 10:52:54 +00:00
|
|
|
class CMakeTarget(base.CMakeTarget):
|
2021-07-31 09:06:19 +00:00
|
|
|
def __init__(self, name='cmake'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
2023-01-10 14:42:08 +00:00
|
|
|
'https://github.com/Kitware/CMake/releases/download/v3.25.1/cmake-3.25.1.tar.gz',
|
|
|
|
'1c511d09516af493694ed9baf13c55947a36389674d657a2d5e0ccedc6b291d8')
|
2021-07-31 09:06:19 +00:00
|
|
|
|
|
|
|
def configure(self, state: BuildState):
|
|
|
|
# Bootstrap native CMake binary
|
|
|
|
boostrap_path = state.native_build_path / '__bootstrap__'
|
|
|
|
boostrap_cmk_path = boostrap_path / 'Bootstrap.cmk'
|
|
|
|
boostrap_cmake = boostrap_cmk_path / 'cmake'
|
|
|
|
|
2023-03-21 10:52:54 +00:00
|
|
|
if state.architecture() == platform.machine():
|
2021-07-31 09:06:19 +00:00
|
|
|
if not boostrap_cmake.exists():
|
|
|
|
os.makedirs(boostrap_path, exist_ok=True)
|
|
|
|
|
|
|
|
args = (state.source / 'configure', '--parallel=' + state.jobs)
|
2022-08-21 08:58:00 +00:00
|
|
|
subprocess.run(args, check=True, cwd=boostrap_path, env=state.environment)
|
2021-07-31 09:06:19 +00:00
|
|
|
|
|
|
|
assert boostrap_cmake.exists()
|
|
|
|
|
2021-08-05 06:59:49 +00:00
|
|
|
# The following variables are needed for cross-compilation
|
|
|
|
opts = state.options
|
|
|
|
opts['HAVE_POLL_FINE_EXITCODE'] = '0'
|
|
|
|
opts['HAVE_POLL_FINE_EXITCODE__TRYRUN_OUTPUT'] = '0'
|
|
|
|
|
2021-08-05 06:53:07 +00:00
|
|
|
env = state.environment
|
2021-07-31 09:06:19 +00:00
|
|
|
env['PATH'] = os.pathsep.join([str(boostrap_cmk_path), env['PATH']])
|
|
|
|
|
|
|
|
super().configure(state)
|
|
|
|
|
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
self.install(state)
|
|
|
|
|
|
|
|
|
2023-03-21 10:52:54 +00:00
|
|
|
class GmakeTarget(base.ConfigureMakeDependencyTarget):
|
2021-05-01 08:54:52 +00:00
|
|
|
def __init__(self, name='gmake'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
2023-01-09 15:32:30 +00:00
|
|
|
# Target's directory is removed before configuration step
|
|
|
|
# gmake cannot be used to build itself, use system's make instead
|
|
|
|
self.tool = 'make'
|
|
|
|
|
2021-05-01 08:54:52 +00:00
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
2023-11-23 11:50:58 +00:00
|
|
|
'https://ftp.gnu.org/gnu/make/make-4.4.1.tar.lz',
|
|
|
|
'8814ba072182b605d156d7589c19a43b89fc58ea479b9355146160946f8cf6e9')
|
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('doc/make.1')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2023-01-09 15:35:08 +00:00
|
|
|
def configure(self, state: BuildState):
|
|
|
|
opts = state.options
|
|
|
|
opts['--datarootdir'] = '/usr/local/share'
|
|
|
|
opts['--includedir'] = '/usr/local/include'
|
|
|
|
opts['--libdir'] = '/usr/local/lib'
|
|
|
|
|
|
|
|
super().configure(state)
|
|
|
|
|
2021-05-01 08:54:52 +00:00
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
self.copy_to_bin(state, 'make', self.name)
|
|
|
|
|
|
|
|
|
2023-03-21 10:52:54 +00:00
|
|
|
class MesonTarget(base.BuildTarget):
|
2021-05-01 08:54:52 +00:00
|
|
|
def __init__(self, name='meson'):
|
|
|
|
super().__init__(name)
|
|
|
|
self.multi_platform = False
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
2023-11-23 14:08:57 +00:00
|
|
|
'https://github.com/mesonbuild/meson/releases/download/1.3.0/meson-1.3.0.tar.gz',
|
|
|
|
'4ba253ef60e454e23234696119cbafa082a0aead0bd3bbf6991295054795f5dc')
|
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('meson.py')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
def post_build(self, state: BuildState):
|
2021-07-22 06:51:13 +00:00
|
|
|
dest_path = state.install_path / 'bin'
|
2021-07-03 12:39:16 +00:00
|
|
|
os.makedirs(dest_path)
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2021-07-03 12:39:16 +00:00
|
|
|
def directory_filter(path: pathlib.Path) -> bool:
|
|
|
|
return path.parts[0].startswith('mesonbuild')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2021-07-22 06:51:13 +00:00
|
|
|
zipapp.create_archive(source=state.source, target=dest_path / self.name,
|
2021-07-03 12:39:16 +00:00
|
|
|
interpreter='/usr/bin/env python3', main='mesonbuild.mesonmain:main',
|
|
|
|
filter=directory_filter, compressed=True)
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
2023-03-21 10:52:54 +00:00
|
|
|
class NasmTarget(base.ConfigureMakeDependencyTarget):
|
2021-05-01 08:54:52 +00:00
|
|
|
def __init__(self, name='nasm'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
2024-04-14 06:45:40 +00:00
|
|
|
'https://www.nasm.us/pub/nasm/releasebuilds/2.16.02/nasm-2.16.02.tar.xz',
|
|
|
|
'1e1b942ea88f22edae89659e15be26fa027eae0747f51413540f52d4eac4790d',
|
2023-04-22 10:58:59 +00:00
|
|
|
patches='nasm-deterministic-date')
|
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('nasm.txt')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
2023-03-21 10:52:54 +00:00
|
|
|
class NinjaTarget(base.CMakeStaticDependencyTarget):
|
2021-05-01 08:54:52 +00:00
|
|
|
def __init__(self, name='ninja'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
2022-08-08 09:59:15 +00:00
|
|
|
'https://github.com/ninja-build/ninja/archive/refs/tags/v1.11.0.tar.gz',
|
|
|
|
'3c6ba2e66400fe3f1ae83deb4b235faf3137ec20bd5b08c29bfc368db143e4c6')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
2022-08-08 09:58:42 +00:00
|
|
|
def configure(self, state: BuildState):
|
|
|
|
state.options['BUILD_TESTING'] = 'NO'
|
|
|
|
super().configure(state)
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
|
2023-03-21 10:52:54 +00:00
|
|
|
class PkgConfigTarget(base.ConfigureMakeDependencyTarget):
|
2021-05-01 08:54:52 +00:00
|
|
|
def __init__(self, name='pkg-config'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://pkg-config.freedesktop.org/releases/pkg-config-0.29.2.tar.gz',
|
|
|
|
'6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591')
|
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
2021-07-22 06:51:13 +00:00
|
|
|
return state.has_source_file('pkg-config.1')
|
2021-05-01 08:54:52 +00:00
|
|
|
|
|
|
|
def post_build(self, state: BuildState):
|
|
|
|
self.copy_to_bin(state, new_filename=self.name + '.exe')
|
|
|
|
|
|
|
|
|
2023-03-21 10:52:54 +00:00
|
|
|
class YasmTarget(base.ConfigureMakeDependencyTarget):
|
2021-09-24 08:57:14 +00:00
|
|
|
def __init__(self, name='yasm'):
|
|
|
|
super().__init__(name)
|
|
|
|
|
|
|
|
def prepare_source(self, state: BuildState):
|
|
|
|
state.download_source(
|
|
|
|
'https://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz',
|
|
|
|
'3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f')
|
|
|
|
|
|
|
|
def detect(self, state: BuildState) -> bool:
|
|
|
|
return state.has_source_file('libyasm.h')
|