2013-02-14 00:29:14 +00:00
|
|
|
# -*- mode: python -*-
|
|
|
|
|
|
|
|
_gtk_osx_use_jhbuild_python = True
|
|
|
|
|
2015-09-18 15:54:07 +00:00
|
|
|
#skip.append("libiconv") # Lion issues
|
|
|
|
branches["python"] = "http://www.python.org/ftp/python/2.7.10/Python-2.7.10.tar.xz"
|
|
|
|
|
2013-02-14 00:29:14 +00:00
|
|
|
modules = [
|
|
|
|
"python",
|
|
|
|
"meta-gtk-osx-bootstrap",
|
2015-09-18 15:54:07 +00:00
|
|
|
"libglade",
|
2013-02-14 00:29:14 +00:00
|
|
|
"meta-gtk-osx-python",
|
|
|
|
"meta-gtk-osx-themes",
|
|
|
|
"gtk-quartz-engine",
|
|
|
|
]
|
|
|
|
|
2015-09-18 15:54:07 +00:00
|
|
|
build_policy = "updated-deps"
|
|
|
|
|
|
|
|
# For default operation, set architecture and SDK for the native machine:
|
|
|
|
_target = None;
|
|
|
|
if _osx_version >= 7.0:
|
|
|
|
_target = "10.7"
|
|
|
|
elif _osx_version >= 6.0:
|
|
|
|
_target = "10.6"
|
|
|
|
elif _osx_version >= 5.0:
|
|
|
|
_target = "10.5"
|
|
|
|
elif _osx_version >= 4.0:
|
|
|
|
_target = "10.4"
|
2013-02-14 00:29:14 +00:00
|
|
|
|
2015-09-18 15:54:07 +00:00
|
|
|
setup_sdk(target=_target, sdk_version="native", architectures=[_default_arch])
|
|
|
|
#setup_sdk(target="10.6", sdk_version="10.6", architectures=["x86_64"])
|
|
|
|
#setup_sdk(target="10.6", sdk_version="10.6", architectures=["i386"])
|