chiark / gitweb /
Merge pull request #374 from GreatFruitOmsk/master
[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 --build-bottle --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 You can also install [official build](http://www.python.org/ftp/python/2.7.3/python-2.7.3-macosx10.6.dmg).
52
53
54 ###Configure Virtualenv
55 Create new virtualenv. If you have [virtualenvwrapper](http://virtualenvwrapper.readthedocs.org/en/latest/) installed:  
56 `mkvirtualenv Cura`
57
58 wxPython cannot be installed via pip, we have to build it from source by specifing prefix to our virtualenv.
59
60 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/*:
61
62 1. `cd` into *~/Downloads/wxPython-src-2.9.4.0/* and configure the sources:
63
64         ./configure \
65         CFLAGS='-msse2 -mno-sse3 -mno-sse4' \
66         CXXFLAGS='-msse2 -mno-sse3 -mno-sse4' \
67         --disable-debug \
68         --enable-clipboard \
69         --enable-display \
70         --enable-dnd \
71         --enable-monolithic \
72         --enable-optimise \
73         --enable-std_string \
74         --enable-svg \
75         --enable-unicode \
76         --enable-universal_binary=i386,x86_64 \
77         --enable-webkit \
78         --prefix=$HOME/.virtualenvs/Cura/ \
79         --with-expat \
80         --with-libjpeg=builtin \
81         --with-libpng=builtin \
82         --with-libtiff=builtin \
83         --with-macosx-version-min=10.6 \
84         --with-opengl \
85         --with-osx_cocoa \
86         --with-zlib=builtin
87
88 2. `make install`  
89     Note to speedup the process I recommend you to enable multicore build by adding the -j*cores* flag:  
90     `make -j4 install`
91 3. `cd` into *~/Downloads/wxPython-src-2.9.4.0/wxPython/*
92 4. Build wxPython (Note `python` is the python of your virtualenv):
93
94         python setup.py build_ext \
95         BUILD_GIZMOS=1 \
96         BUILD_GLCANVAS=1 \
97         BUILD_STC=1 \
98         INSTALL_MULTIVERSION=0 \
99         UNICODE=1 \
100         WX_CONFIG=$HOME/.virtualenvs/Cura/bin/wx-config \
101         WXPORT=osx_cocoa
102
103 5. Install wxPython (Note `python` is the python of your virtualenv):
104
105         python setup.py install \
106         --prefix=$HOME/.virtualenvs/Cura \
107         BUILD_GIZMOS=1 \
108         BUILD_GLCANVAS=1 \
109         BUILD_STC=1 \
110         INSTALL_MULTIVERSION=0 \
111         UNICODE=1 \
112         WX_CONFIG=$HOME/.virtualenvs/Cura/bin/wx-config \
113         WXPORT=osx_cocoa
114
115 6. Create file *~/.virtualenvs/Cura/bin/pythonw* with the following content:
116
117         #!/bin/bash
118         ENV=`python -c "import sys; print sys.prefix"`
119         PYTHON=`python -c "import sys; print sys.real_prefix"`/bin/python
120         export PYTHONHOME=$ENV
121         exec $PYTHON "$@"
122
123 At this point virtualenv is configured for wxPython development.  
124 Remember to use `python` for pacakging and `pythonw` to run app for debugging.
125
126
127 ###Install Python Packages
128 Required python packages are specified in *requirements.txt* and *requirements_darwin.txt*  
129 If you use virtualenv, installing requirements as easy as `pip install -r requirements_darwin.txt`
130
131
132 ###Package Cura into application
133 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:  
134 `./package.sh darwin`
135
136 Note that application is only guaranteed to work on Mac OS X version used to build and higher, but may not support lower versions.
137 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.
138