1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-03-12 04:07:01 -04:00
PySolFC/setup_osx.py
Juhani Numminen dd0efc9428 macOS: make the .app able to start up
Launching the app in a Terminal window works (by typing 'PySolFC.app/Contents/MacOS/PySolFC')
but clicking in Finder window fails. emulate_shell_environment might fix this
per https://github.com/pyinstaller/pyinstaller/issues/5109#issuecomment-808033464
2021-07-14 11:23:12 +03:00

86 lines
2.6 KiB
Python

"""
Command to create a macOS app bundle:
PYTHONPATH=. python3 setup_osx.py py2app
"""
import os
import shutil
import sys
from subprocess import call
from pysollib.settings import PACKAGE, VERSION
from setuptools import setup
# build the rule pages
if not os.path.exists('data/html'):
os.chdir('html-src')
call('./gen-html.py', shell=True)
os.chdir(os.pardir)
shutil.copytree('html-src/images', 'html-src/html/images')
try:
shutil.rmtree('data/html')
except OSError:
pass
shutil.copytree('html-src/html', 'data/html')
# build the HTML list of games
call("./scripts/all_games.py > docs/all_games.html", shell=True)
# Use Freecell Solver, if it is installed.
# http://fc-solve.berlios.de/
SOLVER_LIB_PATH = "/usr/local/lib/libfreecell-solver.0.dylib"
SOLVER = ["/usr/local/bin/fc-solve"]
if not os.path.exists(SOLVER_LIB_PATH):
SOLVER_LIB_PATH = None
SOLVER = []
GETINFO_STRING = "PySol Fan Club Edition \
%s %s, (C) 1998-2003 Markus F.X.J Oberhumer \
(C) 2006-2007 Skomoroh" % (PACKAGE, VERSION)
PLIST = dict(
CFBundleDevelopmentRegion='en_US',
CFBundleExecutable=PACKAGE,
CFBundleDisplayName=PACKAGE,
CFBundleGetInfoString=GETINFO_STRING,
CFBundleIdentifier='net.sourceforge.pysolfc',
CFBundleName=PACKAGE,
CFBundleVersion='%s' % VERSION,
CFBundleShortVersionString='%s' % VERSION,
NSHumanReadableCopyright="Copyright (C) 1998-2003 Markus F.X.J. Oberhumer",
)
APP = ['pysol.py']
ICON_FILE = 'data/PySol.icns'
DATA_FILES = ['docs', 'data', 'locale', 'scripts', 'COPYING', 'README.md',
] + SOLVER
RESOURCES = []
FRAMEWORKS = [SOLVER_LIB_PATH] if SOLVER_LIB_PATH else []
# with argv_emulation=True, the app window is not shown when launched
OPTIONS = dict(argv_emulation=False,
emulate_shell_environment=True,
plist=PLIST,
iconfile=ICON_FILE,
resources=RESOURCES,
frameworks=FRAMEWORKS,
excludes=['pysollib.pysolgtk']
)
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)
#
top = os.getcwd()
# Modify the fc-solve binary with install_name_tool to use the dependent
# libfreecell-solver dynamic library in the app bundle.
if SOLVER and "py2app" in sys.argv:
os.chdir('dist/%s.app/Contents/Resources' % PACKAGE)
call("install_name_tool -change \
/usr/local/lib/libfreecell-solver.0.dylib \
@executable_path/../Frameworks/libfreecell-solver.0.dylib fc-solve",
shell=True
)