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