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