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