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