chiark / gitweb /
Add safely remove SD feature.
[cura.git] / package.sh
1 #!/bin/bash
2
3 # This script is to package the Cura package for Windows/Linux and OSx
4 # This script should run under Linux and OSx, 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=osx64
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.10
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 osx64
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 # Download all needed files.
89 #############################
90
91 if [ $BUILD_TARGET = "win32" ]; then
92         #Get portable python for windows and extract it. (Linux and Mac need to install python themselfs)
93         downloadURL http://ftp.nluug.nl/languages/python/portablepython/v2.7/PortablePython_${WIN_PORTABLE_PY_VERSION}.exe
94         downloadURL http://sourceforge.net/projects/pyserial/files/pyserial/2.5/pyserial-2.5.win32.exe
95         downloadURL http://sourceforge.net/projects/pyopengl/files/PyOpenGL/3.0.1/PyOpenGL-3.0.1.win32.exe
96         downloadURL http://sourceforge.net/projects/numpy/files/NumPy/1.6.2/numpy-1.6.2-win32-superpack-python2.7.exe
97         downloadURL http://videocapture.sourceforge.net/VideoCapture-0.9-5.zip
98         downloadURL http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20120927-git-13f0cd6-win32-static.7z
99         downloadURL http://sourceforge.net/projects/comtypes/files/comtypes/0.6.2/comtypes-0.6.2.win32.exe
100         downloadURL http://www.uwe-sieber.de/files/ejectmedia.zip
101         #Get pypy
102         downloadURL https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-win32.zip
103 elif [ $BUILD_TARGET = "osx64" ]; then
104         downloadURL https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2
105         downloadURL http://python.org/ftp/python/2.7.3/python-2.7.3-macosx10.6.dmg
106         downloadURL http://sourceforge.net/projects/numpy/files/NumPy/1.6.2/numpy-1.6.2-py2.7-python.org-macosx10.3.dmg
107         downloadURL http://pypi.python.org/packages/source/p/pyserial/pyserial-2.6.tar.gz
108         downloadURL http://pypi.python.org/packages/source/P/PyOpenGL/PyOpenGL-3.0.2.tar.gz
109         downloadURL http://downloads.sourceforge.net/wxpython/wxPython2.9-osx-2.9.4.0-cocoa-py2.7.dmg
110 else
111         downloadURL https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2
112 fi
113
114 #############################
115 # Build the packages
116 #############################
117 rm -rf ${TARGET_DIR}
118 mkdir -p ${TARGET_DIR}
119
120 rm -f log.txt
121 if [ $BUILD_TARGET = "win32" ]; then
122         #For windows extract portable python to include it.
123         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/App
124         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/Lib/site-packages
125         extract pyserial-2.5.win32.exe PURELIB
126         extract PyOpenGL-3.0.1.win32.exe PURELIB
127         extract numpy-1.6.2-win32-superpack-python2.7.exe numpy-1.6.2-sse2.exe
128         extract numpy-1.6.2-sse2.exe PLATLIB
129         extract VideoCapture-0.9-5.zip VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd
130         extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe
131         extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/licenses
132         extract comtypes-0.6.2.win32.exe
133         extract ejectmedia.zip Win32
134         
135         mkdir -p ${TARGET_DIR}/python
136         mkdir -p ${TARGET_DIR}/Cura/
137         mv \$_OUTDIR/App/* ${TARGET_DIR}/python
138         mv \$_OUTDIR/Lib/site-packages/wx* ${TARGET_DIR}/python/Lib/site-packages/
139         mv PURELIB/serial ${TARGET_DIR}/python/Lib
140         mv PURELIB/OpenGL ${TARGET_DIR}/python/Lib
141         mv PURELIB/comtypes ${TARGET_DIR}/python/Lib
142         mv PLATLIB/numpy ${TARGET_DIR}/python/Lib
143         mv VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd ${TARGET_DIR}/python/DLLs
144         mv ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe ${TARGET_DIR}/Cura/
145         mv ffmpeg-20120927-git-13f0cd6-win32-static/licenses ${TARGET_DIR}/Cura/ffmpeg-licenses/
146         mv Win32/EjectMedia.exe ${TARGET_DIR}/Cura/
147         rm -rf \$_OUTDIR
148         rm -rf PURELIB
149         rm -rf PLATLIB
150         rm -rf VideoCapture-0.9-5
151         rm -rf numpy-1.6.2-sse2.exe
152         rm -rf ffmpeg-20120927-git-13f0cd6-win32-static
153         
154         #Clean up portable python a bit, to keep the package size down.
155         rm -rf ${TARGET_DIR}/python/PyScripter.*
156         rm -rf ${TARGET_DIR}/python/Doc
157         rm -rf ${TARGET_DIR}/python/locale
158         rm -rf ${TARGET_DIR}/python/tcl
159         rm -rf ${TARGET_DIR}/python/Lib/test
160         rm -rf ${TARGET_DIR}/python/Lib/distutils
161         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/tools
162         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/locale
163         #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.
164         rm -rf ${TARGET_DIR}/python/Lib/OpenGL/DLLS/gle*
165 fi
166
167 #Extract pypy
168 if [ $BUILD_TARGET = "win32" ]; then
169         extract pypy-${PYPY_VERSION}-win32.zip -o${TARGET_DIR}
170 else
171         cd ${TARGET_DIR}; $TAR -xjf ../pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2; cd ..
172 fi
173 mv ${TARGET_DIR}/pypy-* ${TARGET_DIR}/pypy
174 #Cleanup pypy
175 rm -rf ${TARGET_DIR}/pypy/lib-python/2.7/test
176
177 #add Cura
178 mkdir -p ${TARGET_DIR}/Cura
179 cp -a Cura/* ${TARGET_DIR}/Cura
180 #Add cura version file
181 echo $BUILD_NAME > ${TARGET_DIR}/Cura/version
182
183 #add script files
184 if [ $BUILD_TARGET = "win32" ]; then
185     cp -a scripts/${BUILD_TARGET}/*.bat $TARGET_DIR/
186 else
187     cp -a scripts/${BUILD_TARGET}/*.sh $TARGET_DIR/
188 fi
189
190 #package the result
191 if (( ${ARCHIVE_FOR_DISTRIBUTION} )); then
192         if [ $BUILD_TARGET = "win32" ]; then
193                 #rm ${TARGET_DIR}.zip
194                 #cd ${TARGET_DIR}
195                 #7z a ../${TARGET_DIR}.zip *
196                 #cd ..
197                 
198                 if [ ! -z `which wine` ]; then
199                         #if we have wine, try to run our nsis script.
200                         rm -rf scripts/win32/dist
201                         ln -sf `pwd`/${TARGET_DIR} scripts/win32/dist
202                         wine ~/.wine/drive_c/Program\ Files/NSIS/makensis.exe /DVERSION=${BUILD_NAME} scripts/win32/installer.nsi 
203                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
204                 fi
205                 if [ -f '/c/Program Files (x86)/NSIS/makensis.exe' ]; then
206                         rm -rf scripts/win32/dist
207                         mv `pwd`/${TARGET_DIR} scripts/win32/dist
208                         '/c/Program Files (x86)/NSIS/makensis.exe' -DVERSION=${BUILD_NAME} 'scripts/win32/installer.nsi' >> log.txt
209                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
210                 fi
211         elif [ $BUILD_TARGET = "osx64" ]; then
212                 echo "Building osx app"
213                 mkdir -p scripts/osx64/Cura.app/Contents/Resources
214                 mkdir -p scripts/osx64/Cura.app/Contents/Pkgs
215                 rm -rf scripts/osx64/Cura.app/Contents/Resources/Cura
216                 rm -rf scripts/osx64/Cura.app/Contents/Resources/pypy
217                 cp -a ${TARGET_DIR}/* scripts/osx64/Cura.app/Contents/Resources
218                 cp python-2.7.3-macosx10.6.dmg scripts/osx64/Cura.app/Contents/Pkgs
219                 cp numpy-1.6.2-py2.7-python.org-macosx10.3.dmg scripts/osx64/Cura.app/Contents/Pkgs
220                 cp pyserial-2.6.tar.gz scripts/osx64/Cura.app/Contents/Pkgs
221                 cp PyOpenGL-3.0.2.tar.gz scripts/osx64/Cura.app/Contents/Pkgs
222                 cp wxPython2.9-osx-2.9.4.0-cocoa-py2.7.dmg scripts/osx64/Cura.app/Contents/Pkgs
223                 cd scripts/osx64
224                 $TAR cfp - Cura.app | gzip --best -c > ../../${TARGET_DIR}.tar.gz
225                 hdiutil detach /Volumes/Cura\ -\ Ultimaker/
226                 rm -rf Cura.dmg.sparseimage
227                 hdiutil convert DmgTemplateCompressed.dmg -format UDSP -o Cura.dmg
228                 hdiutil resize -size 500m Cura.dmg.sparseimage
229                 hdiutil attach Cura.dmg.sparseimage
230                 cp -a Cura.app /Volumes/Cura\ -\ Ultimaker/Cura/
231                 hdiutil detach /Volumes/Cura\ -\ Ultimaker
232                 hdiutil convert Cura.dmg.sparseimage -format UDZO -imagekey zlib-level=9 -ov -o ../../${TARGET_DIR}.dmg
233         else
234                 echo "Archiving to ${TARGET_DIR}.tar.gz"
235                 $TAR cfp - ${TARGET_DIR} | gzip --best -c > ${TARGET_DIR}.tar.gz
236         fi
237 else
238         echo "Installed into ${TARGET_DIR}"
239 fi