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