mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@117 efabe8c0-fbe8-4139-b769-b5e6d273206e
100 lines
3 KiB
Python
100 lines
3 KiB
Python
"""
|
|
Usage:
|
|
python setup.py py2app
|
|
"""
|
|
|
|
import os, sys
|
|
import shutil
|
|
from subprocess import call
|
|
from setuptools import setup
|
|
from pysollib.settings import PACKAGE, VERSION, FC_VERSION
|
|
|
|
# build the ls py 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.move('html-src/html', 'data/html')
|
|
|
|
# Use Tile widgets, if they are installed.
|
|
# http://tktable.sourceforge.net/tile/
|
|
import Tkinter
|
|
root = Tkinter.Tk()
|
|
root.withdraw()
|
|
try:
|
|
root.tk.call('package', 'require', 'tile', '0.7.8')
|
|
except:
|
|
TILE = None
|
|
else:
|
|
TILE = "tile0.7.8"
|
|
TCL_EXTENSION_PATH = "/Library/Tcl"
|
|
finally:
|
|
root.destroy()
|
|
del root, Tkinter
|
|
|
|
# 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 = SOLVER = ""
|
|
|
|
GETINFO_STRING = "PySol Fan Club Edition \
|
|
%s %s, (C) 1998-2003 Markus F.X.J Oberhumer \
|
|
%s, (C) 2006 Skomoroh" % (PACKAGE, VERSION, FC_VERSION)
|
|
PLIST = dict(
|
|
CFBundleDevelopmentRegion = 'en_US',
|
|
CFBundleExecutable = PACKAGE,
|
|
CFBundleDisplayName = PACKAGE,
|
|
CFBundleGetInfoString = GETINFO_STRING,
|
|
CFBundleIdentifier = 'org.pysol.PySol',
|
|
CFBundleName = PACKAGE,
|
|
CFBundleVersion = '%s (%s)' % (VERSION, FC_VERSION),
|
|
CFBundleShortVersionString = '%s' % VERSION,
|
|
NSHumanReadableCopyright = "Copyright (C) 1998-2003 Markus F.X.J. Oberhumer",
|
|
)
|
|
APP = ['pysollib/pysol.py']
|
|
ICON_FILE = 'data/PySol.icns'
|
|
DATA_FILES = ['docs', 'data', 'scripts','COPYING', 'README', SOLVER]
|
|
RESOURCES = [os.path.join(TCL_EXTENSION_PATH, TILE)] if TILE else []
|
|
FRAMEWORKS = [SOLVER_LIB_PATH]
|
|
OPTIONS = dict(argv_emulation=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()
|
|
# FIXME: a hack to get Tcl extensions working
|
|
# from inside the app bundle
|
|
if TILE and "py2app" in sys.argv:
|
|
os.chdir('dist/%s.app/Contents/Frameworks' % PACKAGE)
|
|
try:
|
|
os.symlink('../Resources/%s' % TILE, TILE)
|
|
except OSError:
|
|
pass
|
|
os.chdir(top)
|
|
# 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
|
|
)
|