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