chiark / gitweb /
RC2
[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=15.01-RC2
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="git@github.com:Ultimaker/CuraEngine.git"
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 function gitClone
71 {
72         echo "Cloning $1 into $2"
73         if [ -d $2 ]; then
74                 cd $2
75                 git clean -dfx
76                 git reset --hard
77                 git pull
78                 cd -
79         else
80                 git clone $1 $2
81         fi
82 }
83
84 #############################
85 # Actual build script
86 #############################
87 if [ "$BUILD_TARGET" = "none" ]; then
88         echo "You need to specify a build target with:"
89         echo "$0 win32"
90         echo "$0 debian_i386"
91         echo "$0 debian_amd64"
92         echo "$0 debian_armhf"
93         echo "$0 darwin"
94         echo "$0 freebsd"
95         exit 0
96 fi
97
98 if [ -z `which make` ]; then
99         MAKE=mingw32-make
100 else
101         MAKE=make
102 fi
103
104 # Change working directory to the directory the script is in
105 # http://stackoverflow.com/a/246128
106 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
107 cd "$SCRIPT_DIR"
108
109 checkTool git "git: http://git-scm.com/"
110 checkTool curl "curl: http://curl.haxx.se/"
111 if [ $BUILD_TARGET = "win32" ]; then
112         checkTool avr-gcc "avr-gcc: http://winavr.sourceforge.net/ "
113         #Check if we have 7zip, needed to extract and packup a bunch of packages for windows.
114         checkTool 7z "7zip: http://www.7-zip.org/"
115         checkTool $MAKE "mingw: http://www.mingw.org/"
116 fi
117 #For building under MacOS we need gnutar instead of tar
118 if [ -z `which gnutar` ]; then
119         TAR=tar
120 else
121         TAR=gnutar
122 fi
123
124 #############################
125 # Build the required firmwares
126 #############################
127
128 if [ -d "C:/arduino-1.0.3" ]; then
129         ARDUINO_PATH=C:/arduino-1.0.3
130         ARDUINO_VERSION=103
131 elif [ -d "/Applications/Arduino.app/Contents/Resources/Java" ]; then
132         ARDUINO_PATH=/Applications/Arduino.app/Contents/Resources/Java
133         ARDUINO_VERSION=105
134 else
135         ARDUINO_PATH=/usr/share/arduino
136         ARDUINO_VERSION=105
137 fi
138
139 #Build the Ultimaker Original firmwares.
140 gitClone git@github.com:Ultimaker/Marlin.git _UltimakerMarlin
141 cd _UltimakerMarlin/Marlin
142 git checkout Marlin_v1
143 $MAKE -j 3 HARDWARE_MOTHERBOARD=7 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_250000 DEFINES="'VERSION_BASE=\"Ultimaker:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"250000_single\"' BAUDRATE=250000 TEMP_SENSOR_1=0 EXTRUDERS=1"
144 $MAKE -j 3 HARDWARE_MOTHERBOARD=7 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_115200 DEFINES="'VERSION_BASE=\"Ultimaker:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"115200_single\"' BAUDRATE=115200 TEMP_SENSOR_1=0 EXTRUDERS=1"
145 $MAKE -j 3 HARDWARE_MOTHERBOARD=7 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_Dual_250000 DEFINES="'VERSION_BASE=\"Ultimaker:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"250000_dual\"' BAUDRATE=250000 TEMP_SENSOR_1=-1 EXTRUDERS=2"
146 $MAKE -j 3 HARDWARE_MOTHERBOARD=7 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_Dual_115200 DEFINES="'VERSION_BASE=\"Ultimaker:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"115200_dual\"' BAUDRATE=115200 TEMP_SENSOR_1=-1 EXTRUDERS=2"
147 git checkout Marlin_UM_HeatedBedUpgrade
148 $MAKE -j 3 HARDWARE_MOTHERBOARD=7 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_HBK_250000 DEFINES="'VERSION_BASE=\"Ultimaker:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"250000_single_HB\"' BAUDRATE=250000 TEMP_SENSOR_1=0 EXTRUDERS=1"
149 $MAKE -j 3 HARDWARE_MOTHERBOARD=7 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_HBK_115200 DEFINES="'VERSION_BASE=\"Ultimaker:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"115200_single_HB\"' BAUDRATE=115200 TEMP_SENSOR_1=0 EXTRUDERS=1"
150 $MAKE -j 3 HARDWARE_MOTHERBOARD=7 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_HBK_Dual_250000 DEFINES="'VERSION_BASE=\"Ultimaker:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"250000_dual_HB\"' BAUDRATE=250000 TEMP_SENSOR_1=-1 EXTRUDERS=2"
151 $MAKE -j 3 HARDWARE_MOTHERBOARD=7 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_HBK_Dual_115200 DEFINES="'VERSION_BASE=\"Ultimaker:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"115200_dual_HB\"' BAUDRATE=115200 TEMP_SENSOR_1=-1 EXTRUDERS=2"
152 git checkout Marlin_UM_Original_Plus
153 $MAKE -j 3 HARDWARE_MOTHERBOARD=72 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_Plus_250000 DEFINES="'VERSION_BASE=\"Ultimaker+:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"250000_single\"' BAUDRATE=250000 TEMP_SENSOR_1=0 EXTRUDERS=1"
154 $MAKE -j 3 HARDWARE_MOTHERBOARD=72 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_Plus_115200 DEFINES="'VERSION_BASE=\"Ultimaker+:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"115200_single\"' BAUDRATE=115200 TEMP_SENSOR_1=0 EXTRUDERS=1"
155 $MAKE -j 3 HARDWARE_MOTHERBOARD=72 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_Plus_Dual_250000 DEFINES="'VERSION_BASE=\"Ultimaker+:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"250000_dual\"' BAUDRATE=250000 TEMP_SENSOR_1=20 EXTRUDERS=2"
156 $MAKE -j 3 HARDWARE_MOTHERBOARD=72 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_UltimakerMarlin_Plus_Dual_115200 DEFINES="'VERSION_BASE=\"Ultimaker+:_${BUILD_NAME}\"' 'VERSION_PROFILE=\"115200_dual\"' BAUDRATE=115200 TEMP_SENSOR_1=20 EXTRUDERS=2"
157 cd -
158
159 gitClone git@github.com:Ultimaker/Ultimaker2Marlin.git _Ultimaker2Marlin
160 cd _Ultimaker2Marlin/Marlin
161 $MAKE -j 3 HARDWARE_MOTHERBOARD=72 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_Ultimaker2 DEFINES="'STRING_CONFIG_H_AUTHOR=\"Version:_${BUILD_NAME}\"' TEMP_SENSOR_1=0 EXTRUDERS=1"
162 $MAKE -j 3 HARDWARE_MOTHERBOARD=72 ARDUINO_INSTALL_DIR=${ARDUINO_PATH} ARDUINO_VERSION=${ARDUINO_VERSION} BUILD_DIR=_Ultimaker2Dual DEFINES="'STRING_CONFIG_H_AUTHOR=\"Version:_${BUILD_NAME}\"' TEMP_SENSOR_1=20 EXTRUDERS=2"
163 cd -
164
165 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_250000/Marlin.hex resources/firmware/MarlinUltimaker-250000.hex
166 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_115200/Marlin.hex resources/firmware/MarlinUltimaker-115200.hex
167 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_Dual_250000/Marlin.hex resources/firmware/MarlinUltimaker-250000-dual.hex
168 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_Dual_115200/Marlin.hex resources/firmware/MarlinUltimaker-115200-dual.hex
169 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_HBK_250000/Marlin.hex resources/firmware/MarlinUltimaker-HBK-250000.hex
170 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_HBK_115200/Marlin.hex resources/firmware/MarlinUltimaker-HBK-115200.hex
171 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_HBK_Dual_250000/Marlin.hex resources/firmware/MarlinUltimaker-HBK-250000-dual.hex
172 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_HBK_Dual_115200/Marlin.hex resources/firmware/MarlinUltimaker-HBK-115200-dual.hex
173 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_Plus_250000/Marlin.hex resources/firmware/MarlinUltimaker-UMOP-250000.hex
174 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_Plus_115200/Marlin.hex resources/firmware/MarlinUltimaker-UMOP-115200.hex
175 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_Plus_Dual_250000/Marlin.hex resources/firmware/MarlinUltimaker-UMOP-250000-dual.hex
176 cp _UltimakerMarlin/Marlin/_UltimakerMarlin_Plus_Dual_115200/Marlin.hex resources/firmware/MarlinUltimaker-UMOP-115200-dual.hex
177 cp _Ultimaker2Marlin/Marlin/_Ultimaker2/Marlin.hex resources/firmware/MarlinUltimaker2.hex
178 cp _Ultimaker2Marlin/Marlin/_Ultimaker2Dual/Marlin.hex resources/firmware/MarlinUltimaker2-dual.hex
179
180 #############################
181 # Darwin
182 #############################
183
184 if [ "$BUILD_TARGET" = "darwin" ]; then
185     TARGET_DIR=Cura-${BUILD_NAME}-MacOS
186
187         rm -rf scripts/darwin/build
188         rm -rf scripts/darwin/dist
189
190         python build_app.py py2app
191         rc=$?
192         if [[ $rc != 0 ]]; then
193                 echo "Cannot build app."
194                 exit 1
195         fi
196
197     #Add cura version file (should read the version from the bundle with pyobjc, but will figure that out later)
198     echo $BUILD_NAME > scripts/darwin/dist/Cura.app/Contents/Resources/version
199         rm -rf CuraEngine
200         gitClone ${CURA_ENGINE_REPO} CuraEngine
201     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
202         $MAKE -C CuraEngine VERSION=${BUILD_NAME}
203     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
204         cp CuraEngine/build/CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine
205
206         cd scripts/darwin
207
208         # Install QuickLook plugin
209         mkdir -p dist/Cura.app/Contents/Library/QuickLook
210         cp -a STLQuickLook.qlgenerator dist/Cura.app/Contents/Library/QuickLook/
211
212         # Archive app
213         cd dist
214         $TAR cfp - Cura.app | gzip --best -c > ../../../${TARGET_DIR}.tar.gz
215         cd ..
216
217         # Create sparse image for distribution
218         hdiutil detach /Volumes/Cura\ -\ Ultimaker/
219         rm -rf Cura.dmg.sparseimage
220         hdiutil convert DmgTemplateCompressed.dmg -format UDSP -o Cura.dmg
221         hdiutil resize -size 500m Cura.dmg.sparseimage
222         hdiutil attach Cura.dmg.sparseimage
223         cp -a dist/Cura.app /Volumes/Cura\ -\ Ultimaker/Cura/
224         hdiutil detach /Volumes/Cura\ -\ Ultimaker
225         hdiutil convert Cura.dmg.sparseimage -format UDZO -imagekey zlib-level=9 -ov -o ../../${TARGET_DIR}.dmg
226         exit
227 fi
228
229 #############################
230 # FreeBSD part by CeDeROM
231 #############################
232
233 if [ "$BUILD_TARGET" = "freebsd" ]; then
234         export CXX="c++"
235         gitClone https://github.com/GreatFruitOmsk/Power Power
236         gitClone ${CURA_ENGINE_REPO} CuraEngine
237     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
238         gmake -j4 -C CuraEngine VERSION=${BUILD_NAME}
239     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
240         rm -rf scripts/freebsd/dist
241         mkdir -p scripts/freebsd/dist/share/cura
242         mkdir -p scripts/freebsd/dist/share/applications
243         mkdir -p scripts/freebsd/dist/bin
244         cp -a Cura scripts/freebsd/dist/share/cura/
245         cp -a resources scripts/freebsd/dist/share/cura/
246         cp -a plugins scripts/freebsd/dist/share/cura/
247         cp -a CuraEngine/build/CuraEngine scripts/freebsd/dist/share/cura/
248         cp scripts/freebsd/cura.py scripts/freebsd/dist/share/cura/
249         cp scripts/freebsd/cura.desktop scripts/freebsd/dist/share/applications/
250         cp scripts/freebsd/cura scripts/freebsd/dist/bin/
251         cp -a Power/power scripts/freebsd/dist/share/cura/
252         echo $BUILD_NAME > scripts/freebsd/dist/share/cura/Cura/version
253         #Create file list (pkg-plist)
254         cd scripts/freebsd/dist
255         find * -type f > ../pkg-plist
256         DIRLVL=20; while [ $DIRLVL -ge 0 ]; do
257                 DIRS=`find share/cura -type d -depth $DIRLVL`
258                 for DIR in $DIRS; do
259                         echo "@dirrm $DIR" >> ../pkg-plist
260                 done
261                 DIRLVL=`expr $DIRLVL - 1`
262         done
263         cd ..
264         # Create archive or package if root
265         if [ `whoami` == "root" ]; then
266             echo "Are you root? Use the Port Luke! :-)"
267         else
268             echo "You are not root, building simple package archive..."
269             pwd
270             $TAR czf ../../${TARGET_DIR}.tar.gz dist/**
271         fi
272         exit
273 fi
274
275 #############################
276 # Debian 32bit .deb
277 #############################
278
279 if [ "$BUILD_TARGET" = "debian_i386" ]; then
280     export CXX="g++ -m32"
281         gitClone https://github.com/GreatFruitOmsk/Power Power
282         gitClone ${CURA_ENGINE_REPO} CuraEngine
283     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
284         $MAKE -C CuraEngine VERSION=${BUILD_NAME}
285     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
286         rm -rf scripts/linux/${BUILD_TARGET}/usr/share/cura
287         mkdir -p scripts/linux/${BUILD_TARGET}/usr/share/cura
288         cp -a Cura scripts/linux/${BUILD_TARGET}/usr/share/cura/
289         cp -a resources scripts/linux/${BUILD_TARGET}/usr/share/cura/
290         cp -a plugins scripts/linux/${BUILD_TARGET}/usr/share/cura/
291         cp -a CuraEngine/build/CuraEngine scripts/linux/${BUILD_TARGET}/usr/share/cura/
292         cp scripts/linux/cura.py scripts/linux/${BUILD_TARGET}/usr/share/cura/
293         cp -a Power/power scripts/linux/${BUILD_TARGET}/usr/share/cura/
294         echo $BUILD_NAME > scripts/linux/${BUILD_TARGET}/usr/share/cura/Cura/version
295         sudo chown root:root scripts/linux/${BUILD_TARGET} -R
296         sudo chmod 755 scripts/linux/${BUILD_TARGET}/usr -R
297         sudo chmod 755 scripts/linux/${BUILD_TARGET}/DEBIAN -R
298         cd scripts/linux
299         dpkg-deb --build ${BUILD_TARGET} $(dirname ${TARGET_DIR})/cura_${BUILD_NAME}-${BUILD_TARGET}.deb
300         sudo chown `id -un`:`id -gn` ${BUILD_TARGET} -R
301         exit
302 fi
303
304 #############################
305 # Debian 64bit .deb
306 #############################
307
308 if [ "$BUILD_TARGET" = "debian_amd64" ]; then
309     export CXX="g++ -m64"
310         gitClone https://github.com/GreatFruitOmsk/Power Power
311         gitClone ${CURA_ENGINE_REPO} CuraEngine
312     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
313         $MAKE -C CuraEngine VERSION=${BUILD_NAME}
314     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
315         rm -rf scripts/linux/${BUILD_TARGET}/usr/share/cura
316         mkdir -p scripts/linux/${BUILD_TARGET}/usr/share/cura
317         cp -a Cura scripts/linux/${BUILD_TARGET}/usr/share/cura/
318         cp -a resources scripts/linux/${BUILD_TARGET}/usr/share/cura/
319         cp -a plugins scripts/linux/${BUILD_TARGET}/usr/share/cura/
320         cp -a CuraEngine/build/CuraEngine scripts/linux/${BUILD_TARGET}/usr/share/cura/
321         cp scripts/linux/cura.py scripts/linux/${BUILD_TARGET}/usr/share/cura/
322         cp -a Power/power scripts/linux/${BUILD_TARGET}/usr/share/cura/
323         echo $BUILD_NAME > scripts/linux/${BUILD_TARGET}/usr/share/cura/Cura/version
324         sudo chown root:root scripts/linux/${BUILD_TARGET} -R
325         sudo chmod 755 scripts/linux/${BUILD_TARGET}/usr -R
326         sudo chmod 755 scripts/linux/${BUILD_TARGET}/DEBIAN -R
327         cd scripts/linux
328         dpkg-deb --build ${BUILD_TARGET} $(dirname ${TARGET_DIR})/cura_${BUILD_NAME}-${BUILD_TARGET}.deb
329         sudo chown `id -un`:`id -gn` ${BUILD_TARGET} -R
330         exit
331 fi
332
333 #############################
334 # Debian armhf .deb
335 #############################
336
337 if [ "$BUILD_TARGET" = "debian_armhf" ]; then
338     export CXX="g++"
339         gitClone https://github.com/GreatFruitOmsk/Power Power
340         gitClone ${CURA_ENGINE_REPO} CuraEngine
341     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
342         $MAKE -C CuraEngine VERSION=${BUILD_NAME}
343     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
344         rm -rf scripts/linux/${BUILD_TARGET}/usr/share/cura
345         mkdir -p scripts/linux/${BUILD_TARGET}/usr/share/cura
346         cp -a Cura scripts/linux/${BUILD_TARGET}/usr/share/cura/
347         cp -a resources scripts/linux/${BUILD_TARGET}/usr/share/cura/
348         cp -a plugins scripts/linux/${BUILD_TARGET}/usr/share/cura/
349         cp -a CuraEngine/build/CuraEngine scripts/linux/${BUILD_TARGET}/usr/share/cura/
350         cp scripts/linux/cura.py scripts/linux/${BUILD_TARGET}/usr/share/cura/
351         cp -a Power/power scripts/linux/${BUILD_TARGET}/usr/share/cura/
352         echo $BUILD_NAME > scripts/linux/${BUILD_TARGET}/usr/share/cura/Cura/version
353         sudo chown root:root scripts/linux/${BUILD_TARGET} -R
354         sudo chmod 755 scripts/linux/${BUILD_TARGET}/usr -R
355         sudo chmod 755 scripts/linux/${BUILD_TARGET}/DEBIAN -R
356         cd scripts/linux
357         dpkg-deb --build ${BUILD_TARGET} $(dirname ${TARGET_DIR})/cura_${BUILD_NAME}-${BUILD_TARGET}.deb
358         sudo chown `id -un`:`id -gn` ${BUILD_TARGET} -R
359         exit
360 fi
361
362 #############################
363 # Rest
364 #############################
365
366 #############################
367 # Download all needed files.
368 #############################
369
370 if [ $BUILD_TARGET = "win32" ]; then
371         #Get portable python for windows and extract it. (Linux and Mac need to install python themselfs)
372         downloadURL http://ftp.nluug.nl/languages/python/portablepython/v2.7/PortablePython_${WIN_PORTABLE_PY_VERSION}.exe
373         downloadURL http://sourceforge.net/projects/pyserial/files/pyserial/2.5/pyserial-2.5.win32.exe
374         downloadURL http://sourceforge.net/projects/pyopengl/files/PyOpenGL/3.0.1/PyOpenGL-3.0.1.win32.exe
375         downloadURL http://sourceforge.net/projects/numpy/files/NumPy/1.6.2/numpy-1.6.2-win32-superpack-python2.7.exe
376         downloadURL http://videocapture.sourceforge.net/VideoCapture-0.9-5.zip
377         #downloadURL http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20120927-git-13f0cd6-win32-static.7z
378         downloadURL http://sourceforge.net/projects/comtypes/files/comtypes/0.6.2/comtypes-0.6.2.win32.exe
379         downloadURL http://www.uwe-sieber.de/files/ejectmedia.zip
380         #Get the power module for python
381         gitClone https://github.com/GreatFruitOmsk/Power Power
382     if [ $? != 0 ]; then echo "Failed to clone Power"; exit 1; fi
383         gitClone ${CURA_ENGINE_REPO} CuraEngine
384     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
385 fi
386
387 #############################
388 # Build the packages
389 #############################
390 rm -rf ${TARGET_DIR}
391 mkdir -p ${TARGET_DIR}
392
393 rm -f log.txt
394 if [ $BUILD_TARGET = "win32" ]; then
395         if [ -z `which i686-w64-mingw32-g++` ]; then
396                 CXX=g++
397         else
398                 CXX=i686-w64-mingw32-g++
399         fi
400         
401         #For windows extract portable python to include it.
402         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/App
403         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/Lib/site-packages
404         extract pyserial-2.5.win32.exe PURELIB
405         extract PyOpenGL-3.0.1.win32.exe PURELIB
406         extract numpy-1.6.2-win32-superpack-python2.7.exe numpy-1.6.2-sse2.exe
407         extract numpy-1.6.2-sse2.exe PLATLIB
408         extract VideoCapture-0.9-5.zip VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd
409         #extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe
410         #extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/licenses
411         extract comtypes-0.6.2.win32.exe
412         extract ejectmedia.zip Win32
413
414         mkdir -p ${TARGET_DIR}/python
415         mkdir -p ${TARGET_DIR}/Cura/
416         mv \$_OUTDIR/App/* ${TARGET_DIR}/python
417         mv \$_OUTDIR/Lib/site-packages/wx* ${TARGET_DIR}/python/Lib/site-packages/
418         mv PURELIB/serial ${TARGET_DIR}/python/Lib
419         mv PURELIB/OpenGL ${TARGET_DIR}/python/Lib
420         mv PURELIB/comtypes ${TARGET_DIR}/python/Lib
421         mv PLATLIB/numpy ${TARGET_DIR}/python/Lib
422         mv Power/power ${TARGET_DIR}/python/Lib
423         mv VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd ${TARGET_DIR}/python/DLLs
424         #mv ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe ${TARGET_DIR}/Cura/
425         #mv ffmpeg-20120927-git-13f0cd6-win32-static/licenses ${TARGET_DIR}/Cura/ffmpeg-licenses/
426         mv Win32/EjectMedia.exe ${TARGET_DIR}/Cura/
427         
428         rm -rf Power/
429         rm -rf \$_OUTDIR
430         rm -rf PURELIB
431         rm -rf PLATLIB
432         rm -rf VideoCapture-0.9-5
433         rm -rf numpy-1.6.2-sse2.exe
434         #rm -rf ffmpeg-20120927-git-13f0cd6-win32-static
435
436         #Clean up portable python a bit, to keep the package size down.
437         rm -rf ${TARGET_DIR}/python/PyScripter.*
438         rm -rf ${TARGET_DIR}/python/Doc
439         rm -rf ${TARGET_DIR}/python/locale
440         rm -rf ${TARGET_DIR}/python/tcl
441         rm -rf ${TARGET_DIR}/python/Lib/test
442         rm -rf ${TARGET_DIR}/python/Lib/distutils
443         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/tools
444         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/locale
445         #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.
446         rm -rf ${TARGET_DIR}/python/Lib/OpenGL/DLLS/gle*
447
448     #Build the C++ engine
449         $MAKE -C CuraEngine VERSION=${BUILD_NAME} OS=Windows_NT CXX=${CXX}
450     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
451 fi
452
453 #add Cura
454 mkdir -p ${TARGET_DIR}/Cura ${TARGET_DIR}/resources ${TARGET_DIR}/plugins
455 cp -a Cura/* ${TARGET_DIR}/Cura
456 cp -a resources/* ${TARGET_DIR}/resources
457 cp -a plugins/* ${TARGET_DIR}/plugins
458 #Add cura version file
459 echo $BUILD_NAME > ${TARGET_DIR}/Cura/version
460
461 #add script files
462 if [ $BUILD_TARGET = "win32" ]; then
463     cp -a scripts/${BUILD_TARGET}/*.bat $TARGET_DIR/
464     cp CuraEngine/build/CuraEngine.exe $TARGET_DIR
465         cp /usr/lib/gcc/i686-w64-mingw32/4.8/libgcc_s_sjlj-1.dll $TARGET_DIR
466     cp /usr/i686-w64-mingw32/lib/libwinpthread-1.dll $TARGET_DIR
467     cp /usr/lib/gcc/i686-w64-mingw32/4.8/libstdc++-6.dll $TARGET_DIR
468 else
469     cp -a scripts/${BUILD_TARGET}/*.sh $TARGET_DIR/
470 fi
471
472 #package the result
473 if (( ${ARCHIVE_FOR_DISTRIBUTION} )); then
474         if [ $BUILD_TARGET = "win32" ]; then
475                 #rm ${TARGET_DIR}.zip
476                 #cd ${TARGET_DIR}
477                 #7z a ../${TARGET_DIR}.zip *
478                 #cd ..
479
480                 if [ ! -z `which wine` ]; then
481                         #if we have wine, try to run our nsis script.
482                         rm -rf scripts/win32/dist
483                         ln -sf `pwd`/${TARGET_DIR} scripts/win32/dist
484                         wine ~/.wine/drive_c/Program\ Files\ \(x86\)/NSIS/makensis.exe /DVERSION=${BUILD_NAME} scripts/win32/installer.nsi
485             if [ $? != 0 ]; then echo "Failed to package NSIS installer"; exit 1; fi
486                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
487                 fi
488                 if [ -f '/c/Program Files (x86)/NSIS/makensis.exe' ]; then
489                         rm -rf scripts/win32/dist
490                         mv `pwd`/${TARGET_DIR} scripts/win32/dist
491                         '/c/Program Files (x86)/NSIS/makensis.exe' -DVERSION=${BUILD_NAME} 'scripts/win32/installer.nsi' >> log.txt
492             if [ $? != 0 ]; then echo "Failed to package NSIS installer"; exit 1; fi
493                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
494                 fi
495         else
496                 echo "Archiving to ${TARGET_DIR}.tar.gz"
497                 $TAR cfp - ${TARGET_DIR} | gzip --best -c > ${TARGET_DIR}.tar.gz
498         fi
499 else
500         echo "Installed into ${TARGET_DIR}"
501 fi