chiark / gitweb /
Merge branch 'master' of 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
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=12.11
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 #############################
70 # Darwin
71 #############################
72
73 if [ "$BUILD_TARGET" = "darwin" ]; then
74         rm -rf scripts/darwin/build
75         rm -rf scripts/darwin/dist
76
77         python setup.py py2app
78         rc=$?
79         if [[ $rc != 0 ]]; then
80                 echo "Cannot build app."
81                 exit 1
82         fi
83
84         cd scripts/darwin
85
86         # Install QuickLook plugin
87         mkdir -p dist/Cura.app/Contents/Library/QuickLook
88         cp -a STLQuickLook.qlgenerator dist/Cura.app/Contents/Library/QuickLook/
89
90         # Archive app
91         $TAR cfp - dist/Cura.app | gzip --best -c > ../../${TARGET_DIR}.tar.gz
92
93         # Create sparse image for distribution
94         hdiutil detach /Volumes/Cura\ -\ Ultimaker/
95         rm -rf Cura.dmg.sparseimage
96         hdiutil convert DmgTemplateCompressed.dmg -format UDSP -o Cura.dmg
97         hdiutil resize -size 500m Cura.dmg.sparseimage
98         hdiutil attach Cura.dmg.sparseimage
99         cp -a dist/Cura.app /Volumes/Cura\ -\ Ultimaker/Cura/
100         hdiutil detach /Volumes/Cura\ -\ Ultimaker
101         hdiutil convert Cura.dmg.sparseimage -format UDZO -imagekey zlib-level=9 -ov -o ../../${TARGET_DIR}.dmg
102         exit
103 fi
104
105 #############################
106 # Rest
107 #############################
108
109 # Change working directory to the directory the script is in
110 # http://stackoverflow.com/a/246128
111 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
112 cd $SCRIPT_DIR
113
114 checkTool git "git: http://git-scm.com/"
115 checkTool curl "curl: http://curl.haxx.se/"
116 if [ $BUILD_TARGET = "win32" ]; then
117         #Check if we have 7zip, needed to extract and packup a bunch of packages for windows.
118         checkTool 7z "7zip: http://www.7-zip.org/"
119 fi
120 #For building under MacOS we need gnutar instead of tar
121 if [ -z `which gnutar` ]; then
122         TAR=tar
123 else
124         TAR=gnutar
125 fi
126
127 #############################
128 # Download all needed files.
129 #############################
130
131 if [ $BUILD_TARGET = "win32" ]; then
132         #Get portable python for windows and extract it. (Linux and Mac need to install python themselfs)
133         downloadURL http://ftp.nluug.nl/languages/python/portablepython/v2.7/PortablePython_${WIN_PORTABLE_PY_VERSION}.exe
134         downloadURL http://sourceforge.net/projects/pyserial/files/pyserial/2.5/pyserial-2.5.win32.exe
135         downloadURL http://sourceforge.net/projects/pyopengl/files/PyOpenGL/3.0.1/PyOpenGL-3.0.1.win32.exe
136         downloadURL http://sourceforge.net/projects/numpy/files/NumPy/1.6.2/numpy-1.6.2-win32-superpack-python2.7.exe
137         downloadURL http://videocapture.sourceforge.net/VideoCapture-0.9-5.zip
138         downloadURL http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20120927-git-13f0cd6-win32-static.7z
139         downloadURL http://sourceforge.net/projects/comtypes/files/comtypes/0.6.2/comtypes-0.6.2.win32.exe
140         downloadURL http://www.uwe-sieber.de/files/ejectmedia.zip
141         #Get pypy
142         downloadURL https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-win32.zip
143 else
144         downloadURL https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2
145 fi
146
147 #############################
148 # Build the packages
149 #############################
150 rm -rf ${TARGET_DIR}
151 mkdir -p ${TARGET_DIR}
152
153 rm -f log.txt
154 if [ $BUILD_TARGET = "win32" ]; then
155         #For windows extract portable python to include it.
156         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/App
157         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/Lib/site-packages
158         extract pyserial-2.5.win32.exe PURELIB
159         extract PyOpenGL-3.0.1.win32.exe PURELIB
160         extract numpy-1.6.2-win32-superpack-python2.7.exe numpy-1.6.2-sse2.exe
161         extract numpy-1.6.2-sse2.exe PLATLIB
162         extract VideoCapture-0.9-5.zip VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd
163         extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe
164         extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/licenses
165         extract comtypes-0.6.2.win32.exe
166         extract ejectmedia.zip Win32
167
168         mkdir -p ${TARGET_DIR}/python
169         mkdir -p ${TARGET_DIR}/Cura/
170         mv \$_OUTDIR/App/* ${TARGET_DIR}/python
171         mv \$_OUTDIR/Lib/site-packages/wx* ${TARGET_DIR}/python/Lib/site-packages/
172         mv PURELIB/serial ${TARGET_DIR}/python/Lib
173         mv PURELIB/OpenGL ${TARGET_DIR}/python/Lib
174         mv PURELIB/comtypes ${TARGET_DIR}/python/Lib
175         mv PLATLIB/numpy ${TARGET_DIR}/python/Lib
176         mv VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd ${TARGET_DIR}/python/DLLs
177         mv ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe ${TARGET_DIR}/Cura/
178         mv ffmpeg-20120927-git-13f0cd6-win32-static/licenses ${TARGET_DIR}/Cura/ffmpeg-licenses/
179         mv Win32/EjectMedia.exe ${TARGET_DIR}/Cura/
180         rm -rf \$_OUTDIR
181         rm -rf PURELIB
182         rm -rf PLATLIB
183         rm -rf VideoCapture-0.9-5
184         rm -rf numpy-1.6.2-sse2.exe
185         rm -rf ffmpeg-20120927-git-13f0cd6-win32-static
186
187         #Clean up portable python a bit, to keep the package size down.
188         rm -rf ${TARGET_DIR}/python/PyScripter.*
189         rm -rf ${TARGET_DIR}/python/Doc
190         rm -rf ${TARGET_DIR}/python/locale
191         rm -rf ${TARGET_DIR}/python/tcl
192         rm -rf ${TARGET_DIR}/python/Lib/test
193         rm -rf ${TARGET_DIR}/python/Lib/distutils
194         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/tools
195         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/locale
196         #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.
197         rm -rf ${TARGET_DIR}/python/Lib/OpenGL/DLLS/gle*
198 fi
199
200 #Extract pypy
201 if [ $BUILD_TARGET = "win32" ]; then
202         extract pypy-${PYPY_VERSION}-win32.zip -o${TARGET_DIR}
203 else
204         cd ${TARGET_DIR}; $TAR -xjf ../pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2; cd ..
205 fi
206 mv ${TARGET_DIR}/pypy-* ${TARGET_DIR}/pypy
207 #Cleanup pypy
208 rm -rf ${TARGET_DIR}/pypy/lib-python/2.7/test
209
210 #add Cura
211 mkdir -p ${TARGET_DIR}/Cura
212 cp -a Cura/* ${TARGET_DIR}/Cura
213 #Add cura version file
214 echo $BUILD_NAME > ${TARGET_DIR}/Cura/version
215
216 #add script files
217 if [ $BUILD_TARGET = "win32" ]; then
218     cp -a scripts/${BUILD_TARGET}/*.bat $TARGET_DIR/
219 else
220     cp -a scripts/${BUILD_TARGET}/*.sh $TARGET_DIR/
221 fi
222
223 #package the result
224 if (( ${ARCHIVE_FOR_DISTRIBUTION} )); then
225         if [ $BUILD_TARGET = "win32" ]; then
226                 #rm ${TARGET_DIR}.zip
227                 #cd ${TARGET_DIR}
228                 #7z a ../${TARGET_DIR}.zip *
229                 #cd ..
230
231                 if [ ! -z `which wine` ]; then
232                         #if we have wine, try to run our nsis script.
233                         rm -rf scripts/win32/dist
234                         ln -sf `pwd`/${TARGET_DIR} scripts/win32/dist
235                         wine ~/.wine/drive_c/Program\ Files/NSIS/makensis.exe /DVERSION=${BUILD_NAME} scripts/win32/installer.nsi
236                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
237                 fi
238                 if [ -f '/c/Program Files (x86)/NSIS/makensis.exe' ]; then
239                         rm -rf scripts/win32/dist
240                         mv `pwd`/${TARGET_DIR} scripts/win32/dist
241                         '/c/Program Files (x86)/NSIS/makensis.exe' -DVERSION=${BUILD_NAME} 'scripts/win32/installer.nsi' >> log.txt
242                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
243                 fi
244         else
245                 echo "Archiving to ${TARGET_DIR}.tar.gz"
246                 $TAR cfp - ${TARGET_DIR} | gzip --best -c > ${TARGET_DIR}.tar.gz
247         fi
248 else
249         echo "Installed into ${TARGET_DIR}"
250 fi