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