chiark / gitweb /
PyObjC is now available at PyPI.
[cura.git] / README.md
1 Cura
2 ====
3
4 If you are reading this, then you are looking at the *development* version of Cura. If you just want to use Cura look at the following location: https://github.com/daid/Cura/wiki
5
6 Development
7 ===========
8
9 Cura is developed in Python. Getting Cura up and running for development is not very difficult. If you copy the python and pypy from a release into your Cura development checkout then you can use Cura right away, just like you would with a release.
10 For development with git, check the help on github. Pull requests is the fastest way to get changes into Cura.
11
12
13 Packaging
14 ---------
15
16 Cura development comes with a script "package.sh", this script has been designed to run under unix like OSes (Linux, MacOS). Running it from sygwin is not a priority.
17 The "package.sh" script generates a final release package. You should not need it during development, unless you are changing the release process. If you want to distribute your own version of Cura, then the package.sh script will allow you to do that.
18
19
20 Mac OS X
21 --------
22 The following section describes how to prepare working environment for developing and packaing for Mac OS X.
23 The working environment consist of build of Python, build of wxPython and all required Python packages.
24
25 We assume you already have Apple hardware with [64bit processor](http://support.apple.com/kb/HT3696) and you are familiar with tools like [virtualenv](http://pypi.python.org/pypi/virtualenv), [virtualenvwrapper](http://virtualenvwrapper.readthedocs.org/en/latest/) and [pip](http://www.pip-installer.org/en/latest/). Also ensure you have modern compiler installed.
26
27
28 ###Install Python
29 You'll need **non-system**, **framework-based**, **universal** with **deployment target set to 10.6** build of Python 2.7
30
31 **non-system**: Output of  
32 `python -c "import sys; print sys.prefix"`  
33 should *not* start with *"/System/Library/Frameworks/Python.framework/"*.
34
35 **framework-based**: Output of  
36 `python -c "import distutils.sysconfig as c; print(c.get_config_var('PYTHONFRAMEWORK'))"`  
37 should be non-empty string. E.g. *Python*.
38
39 **universal**: Output of  
40 ``lipo -info `which python` ``  
41 should include both i386 and x86_64. E.g *"Architectures in the fat file: /usr/local/bin/python are: i386 x86_64"*.
42
43 **deployment target set to 10.6**: Output of  
44 ``otool -l `which python` ``  
45 should contain *"cmd LC_VERSION_MIN_MACOSX ... version 10.6"*.
46
47 The easiest way to install it is via [Homebrew](http://mxcl.github.com/homebrew/) using the formula from Cura's repo:  
48 `brew install --fresh Cura/scripts/darwin/python.rb --universal`  
49 Note if you already have Python installed via Homebrew, you have to uninstall it first.
50
51
52 ###Configure Virtualenv
53 Create new virtualenv. If you have [virtualenvwrapper](http://virtualenvwrapper.readthedocs.org/en/latest/) installed:  
54 `mkvirtualenv Cura`
55
56 wxPython cannot be installed via pip, we have to build it from source by specifing prefix to our virtualenv.
57
58 Assuming you have virtualenv at *~/.virtualenvs/Cura/* and [wxPython sources](http://sourceforge.net/projects/wxpython/files/wxPython/2.9.4.0/wxPython-src-2.9.4.0.tar.bz2) at *~/Downloads/wxPython-src-2.9.4.0/*:
59
60 1. `cd` into *~/Downloads/wxPython-src-2.9.4.0/* and configure the sources:
61
62         ./configure \
63         --disable-debug \
64         --enable-clipboard \
65         --enable-display \
66         --enable-dnd \
67         --enable-monolithic \
68         --enable-optimise \
69         --enable-std_string \
70         --enable-svg \
71         --enable-unicode \
72         --enable-universal_binary=i386,x86_64 \
73         --enable-webkit \
74         --prefix=$HOME/.virtualenvs/Cura/ \
75         --with-expat \
76         --with-libjpeg=builtin \
77         --with-libpng=builtin \
78         --with-libtiff=builtin \
79         --with-macosx-version-min=10.6 \
80         --with-opengl \
81         --with-osx_cocoa \
82         --with-zlib=builtin
83
84 2. `make install`  
85     Note to speedup the process I recommend you to enable multicore build by adding the -j*cores* flag:  
86     `make -j4 install`
87 3. `cd` into *~/Downloads/wxPython-src-2.9.4.0/wxPython/*
88 4. Build wxPython (Note `python` is the python of your virtualenv):
89
90         python setup.py build_ext \
91         BUILD_GIZMOS=1 \
92         BUILD_GLCANVAS=1 \
93         BUILD_STC=1 \
94         INSTALL_MULTIVERSION=0 \
95         UNICODE=1 \
96         WX_CONFIG=$HOME/.virtualenvs/Cura/bin/wx-config \
97         WXPORT=osx_cocoa
98
99 5. Install wxPython (Note `python` is the python of your virtualenv):
100
101         python setup.py install \
102         --prefix=$HOME/.virtualenvs/Cura \
103         BUILD_GIZMOS=1 \
104         BUILD_GLCANVAS=1 \
105         BUILD_STC=1 \
106         INSTALL_MULTIVERSION=0 \
107         UNICODE=1 \
108         WX_CONFIG=$HOME/.virtualenvs/Cura/bin/wx-config \
109         WXPORT=osx_cocoa
110
111 6. Create file *~/.virtualenvs/Cura/bin/pythonw* with the following content:
112
113         #!/bin/bash
114         ENV=`python -c "import sys; print sys.prefix"`
115         PYTHON=`python -c "import sys; print sys.real_prefix"`/bin/python
116         export PYTHONHOME=$ENV
117         exec $PYTHON "$@"
118
119 At this point virtualenv is configured for wxPython development.  
120 Remember to use `python` for pacakging and `pythonw` to run app for debugging.
121
122
123 ###Install Python Packages
124 Required python packages are specified in *requirements.txt* and *requirements_darwin.txt*  
125 If you use virtualenv, installing requirements as easy as `pip install -r requirements_darwin.txt`
126
127
128 ###Package Cura into application
129 Ensure that virtualenv is activated, so `python` points to the python of your virtualenv (e.g. ~/.virtualenvs/Cura/bin/python).Use package.sh to build Cura:  
130 `./package.sh darwin`
131
132 Note that application is only guaranteed to work on Mac OS X version used to build and higher, but may not support lower versions.
133 E.g. Cura built on 10.8 will work on 10.8 and 10.7, but not on 10.6. In other hand, Cura built on 10.6 will work on 10.6, 10.7 and 10.8.
134