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