Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d9b7d48a
Commit
d9b7d48a
authored
Mar 19, 2010
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update mac installer script from the trunk #8068
parent
bf19907e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
254 additions
and
187 deletions
+254
-187
Mac/BuildScript/build-installer.py
Mac/BuildScript/build-installer.py
+254
-187
No files found.
Mac/BuildScript/build-installer.py
View file @
d9b7d48a
...
@@ -40,16 +40,19 @@ def grepValue(fn, variable):
...
@@ -40,16 +40,19 @@ def grepValue(fn, variable):
if
ln
.
startswith
(
variable
):
if
ln
.
startswith
(
variable
):
value
=
ln
[
len
(
variable
):].
strip
()
value
=
ln
[
len
(
variable
):].
strip
()
return
value
[
1
:
-
1
]
return
value
[
1
:
-
1
]
raise
RuntimeError
,
"Cannot find variable %s"
%
variable
[:
-
1
]
def
getVersion
():
def
getVersion
():
return
grepValue
(
os
.
path
.
join
(
SRCDIR
,
'configure'
),
'PACKAGE_VERSION'
)
return
grepValue
(
os
.
path
.
join
(
SRCDIR
,
'configure'
),
'PACKAGE_VERSION'
)
def
getVersionTuple
():
return
tuple
([
int
(
n
)
for
n
in
getVersion
().
split
(
'.'
)])
def
getFullVersion
():
def
getFullVersion
():
fn
=
os
.
path
.
join
(
SRCDIR
,
'Include'
,
'patchlevel.h'
)
fn
=
os
.
path
.
join
(
SRCDIR
,
'Include'
,
'patchlevel.h'
)
for
ln
in
open
(
fn
):
for
ln
in
open
(
fn
):
if
'PY_VERSION'
in
ln
:
if
'PY_VERSION'
in
ln
:
return
ln
.
split
()[
-
1
][
1
:
-
1
]
return
ln
.
split
()[
-
1
][
1
:
-
1
]
raise
RuntimeError
,
"Cannot find full version??"
raise
RuntimeError
,
"Cannot find full version??"
# The directory we'll use to create the build (will be erased and recreated)
# The directory we'll use to create the build (will be erased and recreated)
...
@@ -61,12 +64,33 @@ DEPSRC = os.path.join(WORKDIR, 'third-party')
...
@@ -61,12 +64,33 @@ DEPSRC = os.path.join(WORKDIR, 'third-party')
DEPSRC
=
os
.
path
.
expanduser
(
'~/Universal/other-sources'
)
DEPSRC
=
os
.
path
.
expanduser
(
'~/Universal/other-sources'
)
# Location of the preferred SDK
# Location of the preferred SDK
### There are some issues with the SDK selection below here,
### The resulting binary doesn't work on all platforms that
### it should. Always default to the 10.4u SDK until that
### isue is resolved.
###
##if int(os.uname()[2].split('.')[0]) == 8:
## # Explicitly use the 10.4u (universal) SDK when
## # building on 10.4, the system headers are not
## # useable for a universal build
## SDKPATH = "/Developer/SDKs/MacOSX10.4u.sdk"
##else:
## SDKPATH = "/"
SDKPATH
=
"/Developer/SDKs/MacOSX10.4u.sdk"
SDKPATH
=
"/Developer/SDKs/MacOSX10.4u.sdk"
#SDKPATH = "/"
universal_opts_map
=
{
'32-bit'
:
(
'i386'
,
'ppc'
,),
universal_opts_map
=
{
'32-bit'
:
(
'i386'
,
'ppc'
,),
'64-bit'
:
(
'x86_64'
,
'ppc64'
,),
'64-bit'
:
(
'x86_64'
,
'ppc64'
,),
'intel'
:
(
'i386'
,
'x86_64'
),
'3-way'
:
(
'ppc'
,
'i386'
,
'x86_64'
),
'all'
:
(
'i386'
,
'ppc'
,
'x86_64'
,
'ppc64'
,)
}
'all'
:
(
'i386'
,
'ppc'
,
'x86_64'
,
'ppc64'
,)
}
default_target_map
=
{
'64-bit'
:
'10.5'
,
'3-way'
:
'10.5'
,
'intel'
:
'10.5'
,
'all'
:
'10.5'
,
}
UNIVERSALOPTS
=
tuple
(
universal_opts_map
.
keys
())
UNIVERSALOPTS
=
tuple
(
universal_opts_map
.
keys
())
...
@@ -84,6 +108,17 @@ SRCDIR = os.path.dirname(
...
@@ -84,6 +108,17 @@ SRCDIR = os.path.dirname(
# $MACOSX_DEPLOYMENT_TARGET -> minimum OS X level
# $MACOSX_DEPLOYMENT_TARGET -> minimum OS X level
DEPTARGET
=
'10.3'
DEPTARGET
=
'10.3'
target_cc_map
=
{
'10.3'
:
'gcc-4.0'
,
'10.4'
:
'gcc-4.0'
,
'10.5'
:
'gcc-4.0'
,
'10.6'
:
'gcc-4.2'
,
}
CC
=
target_cc_map
[
DEPTARGET
]
PYTHON_3
=
getVersionTuple
()
>=
(
3
,
0
)
USAGE
=
textwrap
.
dedent
(
"""
\
USAGE
=
textwrap
.
dedent
(
"""
\
Usage: build_python [options]
Usage: build_python [options]
...
@@ -104,13 +139,17 @@ USAGE = textwrap.dedent("""\
...
@@ -104,13 +139,17 @@ USAGE = textwrap.dedent("""\
# [The recipes are defined here for convenience but instantiated later after
# [The recipes are defined here for convenience but instantiated later after
# command line options have been processed.]
# command line options have been processed.]
def
library_recipes
():
def
library_recipes
():
return
[
result
=
[]
if
DEPTARGET
<
'10.5'
:
result
.
extend
([
dict
(
dict
(
name
=
"Bzip2 1.0.4
"
,
name
=
"Bzip2 1.0.5
"
,
url
=
"http://www.bzip.org/1.0.4/bzip2-1.0.4
.tar.gz"
,
url
=
"http://www.bzip.org/1.0.5/bzip2-1.0.5
.tar.gz"
,
checksum
=
'fc310b254f6ba5fbb5da018f04533688
'
,
checksum
=
'3c15a0c8d1d3ee1c46a1634d00617b1a
'
,
configure
=
None
,
configure
=
None
,
install
=
'make install PREFIX=%s/usr/local/ CFLAGS="-arch %s -isysroot %s"'
%
(
install
=
'make install CC=%s PREFIX=%s/usr/local/ CFLAGS="-arch %s -isysroot %s"'
%
(
CC
,
shellQuote
(
os
.
path
.
join
(
WORKDIR
,
'libraries'
)),
shellQuote
(
os
.
path
.
join
(
WORKDIR
,
'libraries'
)),
' -arch '
.
join
(
ARCHLIST
),
' -arch '
.
join
(
ARCHLIST
),
SDKPATH
,
SDKPATH
,
...
@@ -121,7 +160,8 @@ def library_recipes():
...
@@ -121,7 +160,8 @@ def library_recipes():
url
=
"http://www.gzip.org/zlib/zlib-1.2.3.tar.gz"
,
url
=
"http://www.gzip.org/zlib/zlib-1.2.3.tar.gz"
,
checksum
=
'debc62758716a169df9f62e6ab2bc634'
,
checksum
=
'debc62758716a169df9f62e6ab2bc634'
,
configure
=
None
,
configure
=
None
,
install
=
'make install prefix=%s/usr/local/ CFLAGS="-arch %s -isysroot %s"'
%
(
install
=
'make install CC=%s prefix=%s/usr/local/ CFLAGS="-arch %s -isysroot %s"'
%
(
CC
,
shellQuote
(
os
.
path
.
join
(
WORKDIR
,
'libraries'
)),
shellQuote
(
os
.
path
.
join
(
WORKDIR
,
'libraries'
)),
' -arch '
.
join
(
ARCHLIST
),
' -arch '
.
join
(
ARCHLIST
),
SDKPATH
,
SDKPATH
,
...
@@ -142,7 +182,6 @@ def library_recipes():
...
@@ -142,7 +182,6 @@ def library_recipes():
'http://ftp.gnu.org/pub/gnu/readline/readline-5.1-patches/readline51-004'
,
'http://ftp.gnu.org/pub/gnu/readline/readline-5.1-patches/readline51-004'
,
]
]
),
),
dict
(
dict
(
name
=
"SQLite 3.6.11"
,
name
=
"SQLite 3.6.11"
,
url
=
"http://www.sqlite.org/sqlite-3.6.11.tar.gz"
,
url
=
"http://www.sqlite.org/sqlite-3.6.11.tar.gz"
,
...
@@ -155,7 +194,6 @@ def library_recipes():
...
@@ -155,7 +194,6 @@ def library_recipes():
'--disable-tcl'
,
'--disable-tcl'
,
]
]
),
),
dict
(
dict
(
name
=
"NCurses 5.5"
,
name
=
"NCurses 5.5"
,
url
=
"http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.5.tar.gz"
,
url
=
"http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.5.tar.gz"
,
...
@@ -185,10 +223,28 @@ def library_recipes():
...
@@ -185,10 +223,28 @@ def library_recipes():
getVersion
(),
getVersion
(),
),
),
),
),
]
])
result
.
extend
([
dict
(
name
=
"Sleepycat DB 4.7.25"
,
url
=
"http://download.oracle.com/berkeley-db/db-4.7.25.tar.gz"
,
checksum
=
'ec2b87e833779681a0c3a814aa71359e'
,
buildDir
=
"build_unix"
,
configure
=
"../dist/configure"
,
configure_pre
=
[
'--includedir=/usr/local/include/db4'
,
]
),
])
return
result
# Instructions for building packages inside the .mpkg.
# Instructions for building packages inside the .mpkg.
PKG_RECIPES
=
[
def
pkg_recipes
():
unselected_for_python3
=
(
'selected'
,
'unselected'
)[
PYTHON_3
]
result
=
[
dict
(
dict
(
name
=
"PythonFramework"
,
name
=
"PythonFramework"
,
long_name
=
"Python Framework"
,
long_name
=
"Python Framework"
,
...
@@ -258,8 +314,12 @@ PKG_RECIPES = [
...
@@ -258,8 +314,12 @@ PKG_RECIPES = [
topdir
=
"/Library/Frameworks/Python.framework"
,
topdir
=
"/Library/Frameworks/Python.framework"
,
source
=
"/empty-dir"
,
source
=
"/empty-dir"
,
required
=
False
,
required
=
False
,
selected
=
'unselected'
,
selected
=
unselected_for_python3
,
),
),
]
if
DEPTARGET
<
'10.4'
:
result
.
append
(
dict
(
dict
(
name
=
"PythonSystemFixes"
,
name
=
"PythonSystemFixes"
,
long_name
=
"Fix system Python"
,
long_name
=
"Fix system Python"
,
...
@@ -272,9 +332,10 @@ PKG_RECIPES = [
...
@@ -272,9 +332,10 @@ PKG_RECIPES = [
topdir
=
"/Library/Frameworks/Python.framework"
,
topdir
=
"/Library/Frameworks/Python.framework"
,
source
=
"/empty-dir"
,
source
=
"/empty-dir"
,
required
=
False
,
required
=
False
,
selected
=
'unselected'
,
selected
=
unselected_for_python3
,
)
)
]
)
return
result
def
fatal
(
msg
):
def
fatal
(
msg
):
"""
"""
...
@@ -322,10 +383,10 @@ def checkEnvironment():
...
@@ -322,10 +383,10 @@ def checkEnvironment():
"""
"""
if
platform
.
system
()
!=
'Darwin'
:
if
platform
.
system
()
!=
'Darwin'
:
fatal
(
"This script should be run on a Mac OS X 10.4 system"
)
fatal
(
"This script should be run on a Mac OS X 10.4
(or later)
system"
)
if
platform
.
release
()
<=
'8.'
:
if
int
(
platform
.
release
().
split
(
'.'
)[
0
])
<
8
:
fatal
(
"This script should be run on a Mac OS X 10.4 system"
)
fatal
(
"This script should be run on a Mac OS X 10.4
(or later)
system"
)
if
not
os
.
path
.
exists
(
SDKPATH
):
if
not
os
.
path
.
exists
(
SDKPATH
):
fatal
(
"Please install the latest version of Xcode and the %s SDK"
%
(
fatal
(
"Please install the latest version of Xcode and the %s SDK"
%
(
...
@@ -338,7 +399,7 @@ def parseOptions(args=None):
...
@@ -338,7 +399,7 @@ def parseOptions(args=None):
Parse arguments and update global settings.
Parse arguments and update global settings.
"""
"""
global
WORKDIR
,
DEPSRC
,
SDKPATH
,
SRCDIR
,
DEPTARGET
global
WORKDIR
,
DEPSRC
,
SDKPATH
,
SRCDIR
,
DEPTARGET
global
UNIVERSALOPTS
,
UNIVERSALARCHS
,
ARCHLIST
global
UNIVERSALOPTS
,
UNIVERSALARCHS
,
ARCHLIST
,
CC
if
args
is
None
:
if
args
is
None
:
args
=
sys
.
argv
[
1
:]
args
=
sys
.
argv
[
1
:]
...
@@ -355,6 +416,7 @@ def parseOptions(args=None):
...
@@ -355,6 +416,7 @@ def parseOptions(args=None):
print
"Additional arguments"
print
"Additional arguments"
sys
.
exit
(
1
)
sys
.
exit
(
1
)
deptarget
=
None
for
k
,
v
in
options
:
for
k
,
v
in
options
:
if
k
in
(
'-h'
,
'-?'
,
'--help'
):
if
k
in
(
'-h'
,
'-?'
,
'--help'
):
print
USAGE
print
USAGE
...
@@ -374,11 +436,16 @@ def parseOptions(args=None):
...
@@ -374,11 +436,16 @@ def parseOptions(args=None):
elif
k
in
(
'--dep-target'
,
):
elif
k
in
(
'--dep-target'
,
):
DEPTARGET
=
v
DEPTARGET
=
v
deptarget
=
v
elif
k
in
(
'--universal-archs'
,
):
elif
k
in
(
'--universal-archs'
,
):
if
v
in
UNIVERSALOPTS
:
if
v
in
UNIVERSALOPTS
:
UNIVERSALARCHS
=
v
UNIVERSALARCHS
=
v
ARCHLIST
=
universal_opts_map
[
UNIVERSALARCHS
]
ARCHLIST
=
universal_opts_map
[
UNIVERSALARCHS
]
if
deptarget
is
None
:
# Select alternate default deployment
# target
DEPTARGET
=
default_target_map
.
get
(
v
,
'10.3'
)
else
:
else
:
raise
NotImplementedError
,
v
raise
NotImplementedError
,
v
...
@@ -390,6 +457,8 @@ def parseOptions(args=None):
...
@@ -390,6 +457,8 @@ def parseOptions(args=None):
SDKPATH
=
os
.
path
.
abspath
(
SDKPATH
)
SDKPATH
=
os
.
path
.
abspath
(
SDKPATH
)
DEPSRC
=
os
.
path
.
abspath
(
DEPSRC
)
DEPSRC
=
os
.
path
.
abspath
(
DEPSRC
)
CC
=
target_cc_map
[
DEPTARGET
]
print
"Settings:"
print
"Settings:"
print
" * Source directory:"
,
SRCDIR
print
" * Source directory:"
,
SRCDIR
print
" * Build directory: "
,
WORKDIR
print
" * Build directory: "
,
WORKDIR
...
@@ -397,6 +466,7 @@ def parseOptions(args=None):
...
@@ -397,6 +466,7 @@ def parseOptions(args=None):
print
" * Third-party source:"
,
DEPSRC
print
" * Third-party source:"
,
DEPSRC
print
" * Deployment target:"
,
DEPTARGET
print
" * Deployment target:"
,
DEPTARGET
print
" * Universal architectures:"
,
ARCHLIST
print
" * Universal architectures:"
,
ARCHLIST
print
" * C compiler:"
,
CC
print
""
print
""
...
@@ -614,8 +684,8 @@ def buildPythonDocs():
...
@@ -614,8 +684,8 @@ def buildPythonDocs():
runCommand
(
'make update'
)
runCommand
(
'make update'
)
runCommand
(
'make html'
)
runCommand
(
'make html'
)
os
.
chdir
(
curDir
)
os
.
chdir
(
curDir
)
if
os
.
path
.
exists
(
docdir
):
if
not
os
.
path
.
exists
(
docdir
):
os
.
rm
dir
(
docdir
)
os
.
mk
dir
(
docdir
)
os
.
rename
(
os
.
path
.
join
(
buildDir
,
'build'
,
'html'
),
docdir
)
os
.
rename
(
os
.
path
.
join
(
buildDir
,
'build'
,
'html'
),
docdir
)
...
@@ -650,18 +720,20 @@ def buildPython():
...
@@ -650,18 +720,20 @@ def buildPython():
'libraries'
,
'usr'
,
'local'
,
'lib'
)
'libraries'
,
'usr'
,
'local'
,
'lib'
)
print
"Running configure..."
print
"Running configure..."
runCommand
(
"%s -C --enable-framework --enable-universalsdk=%s "
runCommand
(
"%s -C --enable-framework --enable-universalsdk=%s "
"--with-universal-archs=%s --with-computed-gotos "
"--with-universal-archs=%s "
"%s "
"LDFLAGS='-g -L%s/libraries/usr/local/lib' "
"LDFLAGS='-g -L%s/libraries/usr/local/lib' "
"OPT='-g -O3 -I%s/libraries/usr/local/include' 2>&1"
%
(
"OPT='-g -O3 -I%s/libraries/usr/local/include' 2>&1"
%
(
shellQuote
(
os
.
path
.
join
(
SRCDIR
,
'configure'
)),
shellQuote
(
SDKPATH
),
shellQuote
(
os
.
path
.
join
(
SRCDIR
,
'configure'
)),
shellQuote
(
SDKPATH
),
UNIVERSALARCHS
,
UNIVERSALARCHS
,
(
' '
,
'--with-computed-gotos '
)[
PYTHON_3
],
shellQuote
(
WORKDIR
)[
1
:
-
1
],
shellQuote
(
WORKDIR
)[
1
:
-
1
],
shellQuote
(
WORKDIR
)[
1
:
-
1
]))
shellQuote
(
WORKDIR
)[
1
:
-
1
]))
print
"Running make"
print
"Running make"
runCommand
(
"make"
)
runCommand
(
"make"
)
print
"Running make
framework
install"
print
"Running make install"
runCommand
(
"make install DESTDIR=%s"
%
(
runCommand
(
"make install DESTDIR=%s"
%
(
shellQuote
(
rootDir
)))
shellQuote
(
rootDir
)))
...
@@ -685,8 +757,6 @@ def buildPython():
...
@@ -685,8 +757,6 @@ def buildPython():
frmDir
=
os
.
path
.
join
(
rootDir
,
'Library'
,
'Frameworks'
,
'Python.framework'
)
frmDir
=
os
.
path
.
join
(
rootDir
,
'Library'
,
'Frameworks'
,
'Python.framework'
)
gid
=
grp
.
getgrnam
(
'admin'
).
gr_gid
gid
=
grp
.
getgrnam
(
'admin'
).
gr_gid
for
dirpath
,
dirnames
,
filenames
in
os
.
walk
(
frmDir
):
for
dirpath
,
dirnames
,
filenames
in
os
.
walk
(
frmDir
):
for
dn
in
dirnames
:
for
dn
in
dirnames
:
os
.
chmod
(
os
.
path
.
join
(
dirpath
,
dn
),
0775
)
os
.
chmod
(
os
.
path
.
join
(
dirpath
,
dn
),
0775
)
...
@@ -733,12 +803,11 @@ def buildPython():
...
@@ -733,12 +803,11 @@ def buildPython():
os
.
chdir
(
curdir
)
os
.
chdir
(
curdir
)
# Remove the 'Current' link, that way we don't accidently mess with an already installed
if
PYTHON_3
:
# version of python
# Remove the 'Current' link, that way we don't accidently mess
os
.
unlink
(
os
.
path
.
join
(
rootDir
,
'Library'
,
'Frameworks'
,
'Python.framework'
,
'Versions'
,
'Current'
))
# with an already installed version of python 2
os
.
unlink
(
os
.
path
.
join
(
rootDir
,
'Library'
,
'Frameworks'
,
'Python.framework'
,
'Versions'
,
'Current'
))
def
patchFile
(
inPath
,
outPath
):
def
patchFile
(
inPath
,
outPath
):
data
=
fileContents
(
inPath
)
data
=
fileContents
(
inPath
)
...
@@ -872,9 +941,9 @@ def makeMpkgPlist(path):
...
@@ -872,9 +941,9 @@ def makeMpkgPlist(path):
IFPkgFlagPackageList
=
[
IFPkgFlagPackageList
=
[
dict
(
dict
(
IFPkgFlagPackageLocation
=
'%s-%s.pkg'
%
(
item
[
'name'
],
getVersion
()),
IFPkgFlagPackageLocation
=
'%s-%s.pkg'
%
(
item
[
'name'
],
getVersion
()),
IFPkgFlagPackageSelection
=
item
[
'selected'
]
,
IFPkgFlagPackageSelection
=
item
.
get
(
'selected'
,
'selected'
)
,
)
)
for
item
in
PKG_RECIPES
for
item
in
pkg_recipes
()
],
],
IFPkgFormatVersion
=
0.10000000149011612
,
IFPkgFormatVersion
=
0.10000000149011612
,
IFPkgFlagBackgroundScaling
=
"proportional"
,
IFPkgFlagBackgroundScaling
=
"proportional"
,
...
@@ -901,7 +970,7 @@ def buildInstaller():
...
@@ -901,7 +970,7 @@ def buildInstaller():
pkgroot
=
os
.
path
.
join
(
outdir
,
'Python.mpkg'
,
'Contents'
)
pkgroot
=
os
.
path
.
join
(
outdir
,
'Python.mpkg'
,
'Contents'
)
pkgcontents
=
os
.
path
.
join
(
pkgroot
,
'Packages'
)
pkgcontents
=
os
.
path
.
join
(
pkgroot
,
'Packages'
)
os
.
makedirs
(
pkgcontents
)
os
.
makedirs
(
pkgcontents
)
for
recipe
in
PKG_RECIPES
:
for
recipe
in
pkg_recipes
()
:
packageFromRecipe
(
pkgcontents
,
recipe
)
packageFromRecipe
(
pkgcontents
,
recipe
)
rsrcDir
=
os
.
path
.
join
(
pkgroot
,
'Resources'
)
rsrcDir
=
os
.
path
.
join
(
pkgroot
,
'Resources'
)
...
@@ -949,9 +1018,9 @@ def buildDMG():
...
@@ -949,9 +1018,9 @@ def buildDMG():
shutil
.
rmtree
(
outdir
)
shutil
.
rmtree
(
outdir
)
imagepath
=
os
.
path
.
join
(
outdir
,
imagepath
=
os
.
path
.
join
(
outdir
,
'python-%s-macosx
'
%
(
getFullVersion
(),
))
'python-%s-macosx
%s'
%
(
getFullVersion
(),
DEPTARGET
))
if
INCLUDE_TIMESTAMP
:
if
INCLUDE_TIMESTAMP
:
imagepath
=
imagepath
+
'%04d-%02d-%02d'
%
(
time
.
localtime
()[:
3
])
imagepath
=
imagepath
+
'
-
%04d-%02d-%02d'
%
(
time
.
localtime
()[:
3
])
imagepath
=
imagepath
+
'.dmg'
imagepath
=
imagepath
+
'.dmg'
os
.
mkdir
(
outdir
)
os
.
mkdir
(
outdir
)
...
@@ -1009,6 +1078,7 @@ def main():
...
@@ -1009,6 +1078,7 @@ def main():
checkEnvironment
()
checkEnvironment
()
os
.
environ
[
'MACOSX_DEPLOYMENT_TARGET'
]
=
DEPTARGET
os
.
environ
[
'MACOSX_DEPLOYMENT_TARGET'
]
=
DEPTARGET
os
.
environ
[
'CC'
]
=
CC
if
os
.
path
.
exists
(
WORKDIR
):
if
os
.
path
.
exists
(
WORKDIR
):
shutil
.
rmtree
(
WORKDIR
)
shutil
.
rmtree
(
WORKDIR
)
...
@@ -1055,11 +1125,8 @@ def main():
...
@@ -1055,11 +1125,8 @@ def main():
print
>>
fp
,
"# By:"
,
pwd
.
getpwuid
(
os
.
getuid
()).
pw_gecos
print
>>
fp
,
"# By:"
,
pwd
.
getpwuid
(
os
.
getuid
()).
pw_gecos
fp
.
close
()
fp
.
close
()
# And copy it to a DMG
# And copy it to a DMG
buildDMG
()
buildDMG
()
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
main
()
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment