chiark / gitweb /
Merge branch 'SteamEngine' of github.com:daid/Cura into SteamEngine
[cura.git] / package.sh
1 #!/bin/bash
2
3 # This script is to package the Cura package for Windows/Linux and Mac OS X
4 # This script should run under Linux and Mac OS X, as well as Windows with Cygwin.
5
6 #############################
7 # CONFIGURATION
8 #############################
9
10 ##Select the build target
11 BUILD_TARGET=${1:-all}
12 #BUILD_TARGET=win32
13 #BUILD_TARGET=linux
14 #BUILD_TARGET=darwin
15 #BUILD_TARGET=debian
16
17 ##Do we need to create the final archive
18 ARCHIVE_FOR_DISTRIBUTION=1
19 ##Which version name are we appending to the final archive
20 BUILD_NAME=13.10-MultiLanguageTest
21 TARGET_DIR=Cura-${BUILD_NAME}-${BUILD_TARGET}
22
23 ##Which versions of external programs to use
24 WIN_PORTABLE_PY_VERSION=2.7.2.1
25
26 #############################
27 # Support functions
28 #############################
29 function checkTool
30 {
31         if [ -z `which $1` ]; then
32                 echo "The $1 command must be somewhere in your \$PATH."
33                 echo "Fix your \$PATH or install $2"
34                 exit 1
35         fi
36 }
37
38 function downloadURL
39 {
40         filename=`basename "$1"`
41         echo "Checking for $filename"
42         if [ ! -f "$filename" ]; then
43                 echo "Downloading $1"
44                 curl -L -O "$1"
45                 if [ $? != 0 ]; then
46                         echo "Failed to download $1"
47                         exit 1
48                 fi
49         fi
50 }
51
52 function extract
53 {
54         echo "Extracting $*"
55         echo "7z x -y $*" >> log.txt
56         7z x -y $* >> log.txt
57 }
58
59 #############################
60 # Actual build script
61 #############################
62 if [ "$BUILD_TARGET" = "all" ]; then
63         $0 win32
64         $0 linux
65         $0 darwin
66         exit
67 fi
68
69 # Change working directory to the directory the script is in
70 # http://stackoverflow.com/a/246128
71 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
72 cd $SCRIPT_DIR
73
74 checkTool git "git: http://git-scm.com/"
75 checkTool curl "curl: http://curl.haxx.se/"
76 if [ $BUILD_TARGET = "win32" ]; then
77         #Check if we have 7zip, needed to extract and packup a bunch of packages for windows.
78         checkTool 7z "7zip: http://www.7-zip.org/"
79         checkTool mingw32-make "mingw: http://www.mingw.org/"
80 fi
81 #For building under MacOS we need gnutar instead of tar
82 if [ -z `which gnutar` ]; then
83         TAR=tar
84 else
85         TAR=gnutar
86 fi
87
88
89 #############################
90 # Darwin
91 #############################
92
93 if [ "$BUILD_TARGET" = "darwin" ]; then
94     TARGET_DIR=Cura-${BUILD_NAME}-MacOS
95
96         rm -rf scripts/darwin/build
97         rm -rf scripts/darwin/dist
98
99         python build_app.py py2app
100         rc=$?
101         if [[ $rc != 0 ]]; then
102                 echo "Cannot build app."
103                 exit 1
104         fi
105
106     #Add cura version file (should read the version from the bundle with pyobjc, but will figure that out later)
107     echo $BUILD_NAME > scripts/darwin/dist/Cura.app/Contents/Resources/version
108         rm -rf CuraEngine
109         git clone https://github.com/Ultimaker/CuraEngine
110         make -C CuraEngine
111         cp CuraEngine/CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine
112
113         cd scripts/darwin
114
115         # Install QuickLook plugin
116         mkdir -p dist/Cura.app/Contents/Library/QuickLook
117         cp -a STLQuickLook.qlgenerator dist/Cura.app/Contents/Library/QuickLook/
118
119         # Archive app
120         cd dist
121         $TAR cfp - Cura.app | gzip --best -c > ../../../${TARGET_DIR}.tar.gz
122         cd ..
123
124         # Create sparse image for distribution
125         hdiutil detach /Volumes/Cura\ -\ Ultimaker/
126         rm -rf Cura.dmg.sparseimage
127         hdiutil convert DmgTemplateCompressed.dmg -format UDSP -o Cura.dmg
128         hdiutil resize -size 500m Cura.dmg.sparseimage
129         hdiutil attach Cura.dmg.sparseimage
130         cp -a dist/Cura.app /Volumes/Cura\ -\ Ultimaker/Cura/
131         hdiutil detach /Volumes/Cura\ -\ Ultimaker
132         hdiutil convert Cura.dmg.sparseimage -format UDZO -imagekey zlib-level=9 -ov -o ../../${TARGET_DIR}.dmg
133         exit
134 fi
135
136 #############################
137 # Debian .deb
138 #############################
139
140 if [ "$BUILD_TARGET" = "debian" ]; then
141         if [ ! -d "Power" ]; then
142                 git clone https://github.com/GreatFruitOmsk/Power
143         else
144                 cd Power
145                 git pull
146                 cd ..
147         fi
148         rm -rf CuraEngine
149         git clone https://github.com/Ultimaker/CuraEngine
150         make -C CuraEngine
151         rm -rf scripts/linux/debian/usr/share/cura
152         mkdir -p scripts/linux/debian/usr/share/cura
153         cp -a Cura scripts/linux/debian/usr/share/cura/
154         cp -a CuraEngine/CuraEngine scripts/linux/debian/usr/share/cura/
155         cp scripts/linux/cura.py scripts/linux/debian/usr/share/cura/
156         cp -a Power/power scripts/linux/debian/usr/share/cura/
157         echo $BUILD_NAME > scripts/linux/debian/usr/share/cura/Cura/version
158         sudo chown root:root scripts/linux/debian/usr -R
159         sudo chmod 755 scripts/linux/debian/usr -R
160         sudo chmod 755 scripts/linux/debian/DEBIAN -R
161         cd scripts/linux
162         dpkg-deb --build debian ${TARGET_DIR}.deb
163         sudo chown `id -un`:`id -gn` debian -R
164         exit
165 fi
166
167 #############################
168 # Rest
169 #############################
170
171 #############################
172 # Download all needed files.
173 #############################
174
175 if [ $BUILD_TARGET = "win32" ]; then
176         #Get portable python for windows and extract it. (Linux and Mac need to install python themselfs)
177         downloadURL http://ftp.nluug.nl/languages/python/portablepython/v2.7/PortablePython_${WIN_PORTABLE_PY_VERSION}.exe
178         downloadURL http://sourceforge.net/projects/pyserial/files/pyserial/2.5/pyserial-2.5.win32.exe
179         downloadURL http://sourceforge.net/projects/pyopengl/files/PyOpenGL/3.0.1/PyOpenGL-3.0.1.win32.exe
180         downloadURL http://sourceforge.net/projects/numpy/files/NumPy/1.6.2/numpy-1.6.2-win32-superpack-python2.7.exe
181         downloadURL http://videocapture.sourceforge.net/VideoCapture-0.9-5.zip
182         downloadURL http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20120927-git-13f0cd6-win32-static.7z
183         downloadURL http://sourceforge.net/projects/comtypes/files/comtypes/0.6.2/comtypes-0.6.2.win32.exe
184         downloadURL http://www.uwe-sieber.de/files/ejectmedia.zip
185         #Get the power module for python
186         rm -rf Power
187         git clone https://github.com/GreatFruitOmsk/Power
188         rm -rf CuraEngine
189         git clone https://github.com/Ultimaker/CuraEngine
190 fi
191
192 #############################
193 # Build the packages
194 #############################
195 rm -rf ${TARGET_DIR}
196 mkdir -p ${TARGET_DIR}
197
198 rm -f log.txt
199 if [ $BUILD_TARGET = "win32" ]; then
200         #For windows extract portable python to include it.
201         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/App
202         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/Lib/site-packages
203         extract pyserial-2.5.win32.exe PURELIB
204         extract PyOpenGL-3.0.1.win32.exe PURELIB
205         extract numpy-1.6.2-win32-superpack-python2.7.exe numpy-1.6.2-sse2.exe
206         extract numpy-1.6.2-sse2.exe PLATLIB
207         extract VideoCapture-0.9-5.zip VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd
208         extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe
209         extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/licenses
210         extract comtypes-0.6.2.win32.exe
211         extract ejectmedia.zip Win32
212
213         mkdir -p ${TARGET_DIR}/python
214         mkdir -p ${TARGET_DIR}/Cura/
215         mv \$_OUTDIR/App/* ${TARGET_DIR}/python
216         mv \$_OUTDIR/Lib/site-packages/wx* ${TARGET_DIR}/python/Lib/site-packages/
217         mv PURELIB/serial ${TARGET_DIR}/python/Lib
218         mv PURELIB/OpenGL ${TARGET_DIR}/python/Lib
219         mv PURELIB/comtypes ${TARGET_DIR}/python/Lib
220         mv PLATLIB/numpy ${TARGET_DIR}/python/Lib
221         mv Power/power ${TARGET_DIR}/python/Lib
222         mv VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd ${TARGET_DIR}/python/DLLs
223         mv ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe ${TARGET_DIR}/Cura/
224         mv ffmpeg-20120927-git-13f0cd6-win32-static/licenses ${TARGET_DIR}/Cura/ffmpeg-licenses/
225         mv Win32/EjectMedia.exe ${TARGET_DIR}/Cura/
226         
227         rm -rf Power/
228         rm -rf \$_OUTDIR
229         rm -rf PURELIB
230         rm -rf PLATLIB
231         rm -rf VideoCapture-0.9-5
232         rm -rf numpy-1.6.2-sse2.exe
233         rm -rf ffmpeg-20120927-git-13f0cd6-win32-static
234
235         #Clean up portable python a bit, to keep the package size down.
236         rm -rf ${TARGET_DIR}/python/PyScripter.*
237         rm -rf ${TARGET_DIR}/python/Doc
238         rm -rf ${TARGET_DIR}/python/locale
239         rm -rf ${TARGET_DIR}/python/tcl
240         rm -rf ${TARGET_DIR}/python/Lib/test
241         rm -rf ${TARGET_DIR}/python/Lib/distutils
242         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/tools
243         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/locale
244         #Remove the gle files because they require MSVCR71.dll, which is not included. We also don't need gle, so it's safe to remove it.
245         rm -rf ${TARGET_DIR}/python/Lib/OpenGL/DLLS/gle*
246
247     #Build the C++ engine
248         mingw32-make -C CuraEngine
249 fi
250
251 #add Cura
252 mkdir -p ${TARGET_DIR}/Cura
253 cp -a Cura/* ${TARGET_DIR}/Cura
254 #Add cura version file
255 echo $BUILD_NAME > ${TARGET_DIR}/Cura/version
256
257 #add script files
258 if [ $BUILD_TARGET = "win32" ]; then
259     cp -a scripts/${BUILD_TARGET}/*.bat $TARGET_DIR/
260     cp CuraEngine/CuraEngine.exe $TARGET_DIR
261 else
262     cp -a scripts/${BUILD_TARGET}/*.sh $TARGET_DIR/
263 fi
264
265 #package the result
266 if (( ${ARCHIVE_FOR_DISTRIBUTION} )); then
267         if [ $BUILD_TARGET = "win32" ]; then
268                 #rm ${TARGET_DIR}.zip
269                 #cd ${TARGET_DIR}
270                 #7z a ../${TARGET_DIR}.zip *
271                 #cd ..
272
273                 if [ ! -z `which wine` ]; then
274                         #if we have wine, try to run our nsis script.
275                         rm -rf scripts/win32/dist
276                         ln -sf `pwd`/${TARGET_DIR} scripts/win32/dist
277                         wine ~/.wine/drive_c/Program\ Files/NSIS/makensis.exe /DVERSION=${BUILD_NAME} scripts/win32/installer.nsi
278                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
279                 fi
280                 if [ -f '/c/Program Files (x86)/NSIS/makensis.exe' ]; then
281                         rm -rf scripts/win32/dist
282                         mv `pwd`/${TARGET_DIR} scripts/win32/dist
283                         '/c/Program Files (x86)/NSIS/makensis.exe' -DVERSION=${BUILD_NAME} 'scripts/win32/installer.nsi' >> log.txt
284                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
285                 fi
286         else
287                 echo "Archiving to ${TARGET_DIR}.tar.gz"
288                 $TAR cfp - ${TARGET_DIR} | gzip --best -c > ${TARGET_DIR}.tar.gz
289         fi
290 else
291         echo "Installed into ${TARGET_DIR}"
292 fi