mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
- bring up to date with changes to versioning.
git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@203 efabe8c0-fbe8-4139-b769-b5e6d273206e
This commit is contained in:
parent
06a6d7492e
commit
fe8ef7be3d
1 changed files with 7 additions and 4 deletions
11
setup_osx.py
11
setup_osx.py
|
@ -7,7 +7,7 @@ import os, sys
|
||||||
import shutil
|
import shutil
|
||||||
from subprocess import call
|
from subprocess import call
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
from pysollib.settings import PACKAGE, VERSION, FC_VERSION
|
from pysollib.settings import PACKAGE, VERSION
|
||||||
|
|
||||||
# build the rule pages
|
# build the rule pages
|
||||||
if not os.path.exists('data/html'):
|
if not os.path.exists('data/html'):
|
||||||
|
@ -19,7 +19,10 @@ if not os.path.exists('data/html'):
|
||||||
shutil.rmtree('data/html')
|
shutil.rmtree('data/html')
|
||||||
except OSError:
|
except OSError:
|
||||||
pass
|
pass
|
||||||
shutil.move('html-src/html', 'data/html')
|
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 Tile widgets, if they are installed.
|
# Use Tile widgets, if they are installed.
|
||||||
# http://tktable.sourceforge.net/tile/
|
# http://tktable.sourceforge.net/tile/
|
||||||
|
@ -47,7 +50,7 @@ if not os.path.exists(SOLVER_LIB_PATH):
|
||||||
|
|
||||||
GETINFO_STRING = "PySol Fan Club Edition \
|
GETINFO_STRING = "PySol Fan Club Edition \
|
||||||
%s %s, (C) 1998-2003 Markus F.X.J Oberhumer \
|
%s %s, (C) 1998-2003 Markus F.X.J Oberhumer \
|
||||||
%s, (C) 2006 Skomoroh" % (PACKAGE, VERSION, FC_VERSION)
|
(C) 2006-2007 Skomoroh" % (PACKAGE, VERSION)
|
||||||
PLIST = dict(
|
PLIST = dict(
|
||||||
CFBundleDevelopmentRegion = 'en_US',
|
CFBundleDevelopmentRegion = 'en_US',
|
||||||
CFBundleExecutable = PACKAGE,
|
CFBundleExecutable = PACKAGE,
|
||||||
|
@ -55,7 +58,7 @@ PLIST = dict(
|
||||||
CFBundleGetInfoString = GETINFO_STRING,
|
CFBundleGetInfoString = GETINFO_STRING,
|
||||||
CFBundleIdentifier = 'org.pysol.PySol',
|
CFBundleIdentifier = 'org.pysol.PySol',
|
||||||
CFBundleName = PACKAGE,
|
CFBundleName = PACKAGE,
|
||||||
CFBundleVersion = '%s (%s)' % (VERSION, FC_VERSION),
|
CFBundleVersion = '%s' % VERSION,
|
||||||
CFBundleShortVersionString = '%s' % VERSION,
|
CFBundleShortVersionString = '%s' % VERSION,
|
||||||
NSHumanReadableCopyright = "Copyright (C) 1998-2003 Markus F.X.J. Oberhumer",
|
NSHumanReadableCopyright = "Copyright (C) 1998-2003 Markus F.X.J. Oberhumer",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue