chiark / gitweb /
Update to webcam support, support setting properties, and enable.disable timelaps...
[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.09
20 TARGET_DIR=${BUILD_TARGET}-Cura-${BUILD_NAME}
21
22 ##Which versions of external programs to use
23 PYPY_VERSION=1.9
24 WIN_PORTABLE_PY_VERSION=2.7.2.1
25 WIN_PYSERIAL_VERSION=2.5
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 #############################
40 # Actual build script
41 #############################
42 if [ "$BUILD_TARGET" = "all" ]; then
43         $0 win32
44         $0 linux
45         $0 osx64
46         exit
47 fi
48
49 # Change working directory to the directory the script is in
50 # http://stackoverflow.com/a/246128
51 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
52 cd $SCRIPT_DIR
53
54 checkTool git "git: http://git-scm.com/"
55 checkTool curl "curl: http://curl.haxx.se/"
56 if [ $BUILD_TARGET = "win32" ]; then
57         #Check if we have 7zip, needed to extract and packup a bunch of packages for windows.
58         checkTool 7z "7zip: http://www.7-zip.org/"
59 fi
60 #For building under MacOS we need gnutar instead of tar
61 if [ -z `which gnutar` ]; then
62         TAR=tar
63 else
64         TAR=gnutar
65 fi
66
67 #############################
68 # Download all needed files.
69 #############################
70
71 if [ $BUILD_TARGET = "win32" ]; then
72         #Get portable python for windows and extract it. (Linux and Mac need to install python themselfs)
73         if [ ! -f "PortablePython_${WIN_PORTABLE_PY_VERSION}.exe" ]; then
74                 curl -L -O http://ftp.nluug.nl/languages/python/portablepython/v2.7/PortablePython_${WIN_PORTABLE_PY_VERSION}.exe
75         fi
76         if [ ! -f pyserial-${WIN_PYSERIAL_VERSION}.exe ]; then
77                 curl -L -O http://sourceforge.net/projects/pyserial/files/pyserial/${WIN_PYSERIAL_VERSION}/pyserial-${WIN_PYSERIAL_VERSION}.win32.exe/download
78                 mv download pyserial-${WIN_PYSERIAL_VERSION}.exe
79         fi
80         if [ ! -f PyOpenGL-3.0.1.win32.exe ]; then
81                 curl -L -O http://sourceforge.net/projects/pyopengl/files/PyOpenGL/3.0.1/PyOpenGL-3.0.1.win32.exe
82         fi
83         if [ ! -f numpy-1.6.2-win32-superpack-python2.7.exe ]; then
84                 curl -L -O http://sourceforge.net/projects/numpy/files/NumPy/1.6.2/numpy-1.6.2-win32-superpack-python2.7.exe
85         fi
86         if [ ! -f VideoCapture-0.9-5.zip ]; then
87                 curl -L -O http://videocapture.sourceforge.net/VideoCapture-0.9-5.zip
88         fi
89         if [ ! -f ffmpeg-20120927-git-13f0cd6-win32-static.7z ]; then
90                 curl -L -O http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20120927-git-13f0cd6-win32-static.7z
91         fi
92         #Get pypy
93         if [ ! -f "pypy-${PYPY_VERSION}-win32.zip" ]; then
94                 curl -L -O https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-win32.zip
95         #       curl -L -O http://buildbot.pypy.org/nightly/trunk/pypy-${PYPY_VERSION}-win32.zip
96         fi
97 else
98         if [ ! -f "pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2" ]; then
99                 curl -L -O https://bitbucket.org/pypy/pypy/downloads/pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2
100         #       curl -L -O http://buildbot.pypy.org/nightly/trunk/pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2
101         fi
102 fi
103
104 #Get our own version of Printrun
105 if [ ! -d "Printrun" ]; then
106   git clone git://github.com/daid/Printrun.git
107 else
108   echo "Updating Printrun"
109   cd Printrun
110   git pull
111   cd ..
112 fi
113
114 #############################
115 # Build the packages
116 #############################
117 rm -rf ${TARGET_DIR}
118 mkdir -p ${TARGET_DIR}
119
120 if [ $BUILD_TARGET = "win32" ]; then
121         #For windows extract portable python to include it.
122         7z x PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/App
123         7z x PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/Lib/site-packages
124         7z x pyserial-${WIN_PYSERIAL_VERSION}.exe PURELIB
125         7z x PyOpenGL-3.0.1.win32.exe PURELIB
126         7z x numpy-1.6.2-win32-superpack-python2.7.exe numpy-1.6.2-sse2.exe
127         7z x numpy-1.6.2-sse2.exe PLATLIB
128         7z x VideoCapture-0.9-5.zip
129
130         mkdir -p ${TARGET_DIR}/python
131         mv \$_OUTDIR/App/* ${TARGET_DIR}/python
132         mv \$_OUTDIR/Lib/site-packages/wx* ${TARGET_DIR}/python/Lib/site-packages/
133         mv PURELIB/serial ${TARGET_DIR}/python/Lib
134         mv PURELIB/OpenGL ${TARGET_DIR}/python/Lib
135         mv PLATLIB/numpy ${TARGET_DIR}/python/Lib
136         mv VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd ${TARGET_DIR}/python/DLLs
137         rm -rf \$_OUTDIR
138         rm -rf PURELIB
139         rm -rf PLATLIB
140         rm -rf VideoCapture-0.9-5
141         rm -rf numpy-1.6.2-sse2.exe
142         
143         #Clean up portable python a bit, to keep the package size down.
144         rm -rf ${TARGET_DIR}/python/PyScripter.*
145         rm -rf ${TARGET_DIR}/python/Doc
146         rm -rf ${TARGET_DIR}/python/locale
147         rm -rf ${TARGET_DIR}/python/tcl
148         rm -rf ${TARGET_DIR}/python/Lib/test
149         rm -rf ${TARGET_DIR}/python/Lib/distutils
150         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/tools
151         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/locale
152         #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.
153         rm -rf ${TARGET_DIR}/python/Lib/OpenGL/DLLS/gle*
154 fi
155
156 #Extract pypy
157 if [ $BUILD_TARGET = "win32" ]; then
158         7z x pypy-${PYPY_VERSION}-win32.zip -o${TARGET_DIR}
159 else
160         cd ${TARGET_DIR}; $TAR -xjf ../pypy-${PYPY_VERSION}-${BUILD_TARGET}.tar.bz2; cd ..
161 fi
162 mv ${TARGET_DIR}/pypy-*-${BUILD_TARGET} ${TARGET_DIR}/pypy
163 #Cleanup pypy
164 rm -rf ${TARGET_DIR}/pypy/lib-python/2.7/test
165
166 #add Cura
167 cp -a Cura ${TARGET_DIR}/Cura
168 #Add cura version file
169 echo $BUILD_NAME > ${TARGET_DIR}/Cura/version
170
171 #add printrun
172 cp -a Printrun ${TARGET_DIR}/Printrun
173 rm -rf ${TARGET_DIR}/Printrun/.git*
174
175 #add script files
176 if [ $BUILD_TARGET = "win32" ]; then
177     cp -a scripts/${BUILD_TARGET}/*.bat $TARGET_DIR/
178 else
179     cp -a scripts/${BUILD_TARGET}/*.sh $TARGET_DIR/
180     cp -a scripts/${BUILD_TARGET}/*.command $TARGET_DIR/
181 fi
182
183 #package the result
184 if (( ${ARCHIVE_FOR_DISTRIBUTION} )); then
185         if [ $BUILD_TARGET = "win32" ]; then
186                 rm ${TARGET_DIR}.zip
187                 cd ${TARGET_DIR}
188                 7z a ../${TARGET_DIR}.zip *
189                 cd ..
190                 
191                 if [ ! -z `which wine` ]; then
192                         #if we have wine, try to run our nsis script.
193                         rm -rf scripts/win32/dist
194                         ln -sf `pwd`/${TARGET_DIR} scripts/win32/dist
195                         wine ~/.wine/drive_c/Program\ Files/NSIS/makensis.exe /DVERSION=${BUILD_NAME} scripts/win32/installer.nsi 
196                 fi
197         else
198                 echo "Archiving to ${TARGET_DIR}.tar.gz"
199                 $TAR cfp - ${TARGET_DIR} | gzip --best -c > ${TARGET_DIR}.tar.gz
200         fi
201 else
202         echo "Installed into ${TARGET_DIR}"
203 fi
204