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