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