mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

https://forums.ankiweb.net/t/recent-anki-updates-bundle-id-change-disabling-app-nap-macos-anki-connect/65550
56 lines
1.5 KiB
Python
56 lines
1.5 KiB
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import subprocess
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
# If no arguments provided, build for the anki_mac_helper package
|
|
if len(sys.argv) == 1:
|
|
script_dir = Path(__file__).parent
|
|
out_dylib = script_dir / "anki_mac_helper" / "libankihelper.dylib"
|
|
src_files = list(script_dir.glob("*.swift"))
|
|
else:
|
|
out_dylib, *src_files = sys.argv[1:]
|
|
|
|
out_dylib = Path(out_dylib)
|
|
out_dir = out_dylib.parent.resolve()
|
|
src_dir = Path(src_files[0]).parent.resolve()
|
|
|
|
# Build for both architectures
|
|
architectures = ["arm64", "x86_64"]
|
|
temp_files = []
|
|
|
|
for arch in architectures:
|
|
target = f"{arch}-apple-macos11"
|
|
temp_out = out_dir / f"temp_{arch}.dylib"
|
|
temp_files.append(temp_out)
|
|
|
|
args = [
|
|
"swiftc",
|
|
"-target",
|
|
target,
|
|
"-emit-library",
|
|
"-module-name",
|
|
"ankihelper",
|
|
"-O",
|
|
]
|
|
if isinstance(src_files[0], Path):
|
|
args.extend(src_files)
|
|
else:
|
|
args.extend(src_dir / Path(file).name for file in src_files)
|
|
args.extend(["-o", str(temp_out)])
|
|
subprocess.run(args, check=True, cwd=out_dir)
|
|
|
|
# Ensure output directory exists
|
|
out_dir.mkdir(parents=True, exist_ok=True)
|
|
|
|
# Create universal binary
|
|
lipo_args = ["lipo", "-create", "-output", str(out_dylib)] + [
|
|
str(f) for f in temp_files
|
|
]
|
|
subprocess.run(lipo_args, check=True)
|
|
|
|
# Clean up temporary files
|
|
for temp_file in temp_files:
|
|
temp_file.unlink()
|