chiark / gitweb /
Merge pull request #708 from hg42/fix-missing-files-in-debian-packages
[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 #BUILD_TARGET=debian_i386
16 #BUILD_TARGET=debian_amd64
17
18 ##Do we need to create the final archive
19 ARCHIVE_FOR_DISTRIBUTION=1
20 ##Which version name are we appending to the final archive
21 export BUILD_NAME=14.01
22 TARGET_DIR=Cura-${BUILD_NAME}-${BUILD_TARGET}
23
24 ##Which versions of external programs to use
25 WIN_PORTABLE_PY_VERSION=2.7.2.1
26
27 ##Which CuraEngine to use
28 if [ -z ${CURA_ENGINE_REPO} ] ; then
29         CURA_ENGINE_REPO="https://github.com/Ultimaker/CuraEngine"
30 fi
31
32 #############################
33 # Support functions
34 #############################
35 function checkTool
36 {
37         if [ -z `which $1` ]; then
38                 echo "The $1 command must be somewhere in your \$PATH."
39                 echo "Fix your \$PATH or install $2"
40                 exit 1
41         fi
42 }
43
44 function downloadURL
45 {
46         filename=`basename "$1"`
47         echo "Checking for $filename"
48         if [ ! -f "$filename" ]; then
49                 echo "Downloading $1"
50                 curl -L -O "$1"
51                 if [ $? != 0 ]; then
52                         echo "Failed to download $1"
53                         exit 1
54                 fi
55         fi
56 }
57
58 function extract
59 {
60         echo "Extracting $*"
61         echo "7z x -y $*" >> log.txt
62         7z x -y $* >> log.txt
63 }
64
65 #############################
66 # Actual build script
67 #############################
68 if [ "$BUILD_TARGET" = "all" ]; then
69         $0 win32
70         $0 linux
71         $0 darwin
72         exit
73 fi
74
75 # Change working directory to the directory the script is in
76 # http://stackoverflow.com/a/246128
77 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
78 cd $SCRIPT_DIR
79
80 checkTool git "git: http://git-scm.com/"
81 checkTool curl "curl: http://curl.haxx.se/"
82 if [ $BUILD_TARGET = "win32" ]; then
83         #Check if we have 7zip, needed to extract and packup a bunch of packages for windows.
84         checkTool 7z "7zip: http://www.7-zip.org/"
85         checkTool mingw32-make "mingw: http://www.mingw.org/"
86 fi
87 #For building under MacOS we need gnutar instead of tar
88 if [ -z `which gnutar` ]; then
89         TAR=tar
90 else
91         TAR=gnutar
92 fi
93
94
95 #############################
96 # Darwin
97 #############################
98
99 if [ "$BUILD_TARGET" = "darwin" ]; then
100     TARGET_DIR=Cura-${BUILD_NAME}-MacOS
101
102         rm -rf scripts/darwin/build
103         rm -rf scripts/darwin/dist
104
105         python build_app.py py2app
106         rc=$?
107         if [[ $rc != 0 ]]; then
108                 echo "Cannot build app."
109                 exit 1
110         fi
111
112     #Add cura version file (should read the version from the bundle with pyobjc, but will figure that out later)
113     echo $BUILD_NAME > scripts/darwin/dist/Cura.app/Contents/Resources/version
114         rm -rf CuraEngine
115         git clone ${CURA_ENGINE_REPO}
116         make -C CuraEngine
117         cp CuraEngine/CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine
118
119         cd scripts/darwin
120
121         # Install QuickLook plugin
122         mkdir -p dist/Cura.app/Contents/Library/QuickLook
123         cp -a STLQuickLook.qlgenerator dist/Cura.app/Contents/Library/QuickLook/
124
125         # Archive app
126         cd dist
127         $TAR cfp - Cura.app | gzip --best -c > ../../../${TARGET_DIR}.tar.gz
128         cd ..
129
130         # Create sparse image for distribution
131         hdiutil detach /Volumes/Cura\ -\ Ultimaker/
132         rm -rf Cura.dmg.sparseimage
133         hdiutil convert DmgTemplateCompressed.dmg -format UDSP -o Cura.dmg
134         hdiutil resize -size 500m Cura.dmg.sparseimage
135         hdiutil attach Cura.dmg.sparseimage
136         cp -a dist/Cura.app /Volumes/Cura\ -\ Ultimaker/Cura/
137         hdiutil detach /Volumes/Cura\ -\ Ultimaker
138         hdiutil convert Cura.dmg.sparseimage -format UDZO -imagekey zlib-level=9 -ov -o ../../${TARGET_DIR}.dmg
139         exit
140 fi
141
142 #############################
143 # Debian 32bit .deb
144 #############################
145
146 if [ "$BUILD_TARGET" = "debian_i386" ]; then
147         export CXX="g++ -m32"
148         if [ ! -d "Power" ]; then
149                 git clone https://github.com/GreatFruitOmsk/Power
150         else
151                 cd Power
152                 git pull
153                 cd ..
154         fi
155         rm -rf CuraEngine
156         git clone ${CURA_ENGINE_REPO}
157         make -C CuraEngine
158         rm -rf scripts/linux/${BUILD_TARGET}/usr/share/cura
159         mkdir -p scripts/linux/${BUILD_TARGET}/usr/share/cura
160         cp -a Cura scripts/linux/${BUILD_TARGET}/usr/share/cura/
161         cp -a CuraEngine/CuraEngine scripts/linux/${BUILD_TARGET}/usr/share/cura/
162         cp scripts/linux/cura.py scripts/linux/${BUILD_TARGET}/usr/share/cura/
163         cp -a Power/power scripts/linux/${BUILD_TARGET}/usr/share/cura/
164         echo $BUILD_NAME > scripts/linux/${BUILD_TARGET}/usr/share/cura/Cura/version
165         sudo chown root:root scripts/linux/${BUILD_TARGET} -R
166         sudo chmod 755 scripts/linux/${BUILD_TARGET}/usr -R
167         sudo chmod 755 scripts/linux/${BUILD_TARGET}/DEBIAN -R
168         cd scripts/linux
169         dpkg-deb --build ${BUILD_TARGET} $(dirname ${TARGET_DIR})/cura_${BUILD_NAME}-${BUILD_TARGET}.deb
170         sudo chown `id -un`:`id -gn` ${BUILD_TARGET} -R
171         exit
172 fi
173
174 #############################
175 # Debian 64bit .deb
176 #############################
177
178 if [ "$BUILD_TARGET" = "debian_amd64" ]; then
179         export CXX="g++ -m64"
180         if [ ! -d "Power" ]; then
181                 git clone https://github.com/GreatFruitOmsk/Power
182         else
183                 cd Power
184                 git pull
185                 cd ..
186         fi
187         rm -rf CuraEngine
188         git clone ${CURA_ENGINE_REPO}
189         make -C CuraEngine
190         rm -rf scripts/linux/${BUILD_TARGET}/usr/share/cura
191         mkdir -p scripts/linux/${BUILD_TARGET}/usr/share/cura
192         cp -a Cura scripts/linux/${BUILD_TARGET}/usr/share/cura/
193         cp -a CuraEngine/CuraEngine scripts/linux/${BUILD_TARGET}/usr/share/cura/
194         cp scripts/linux/cura.py scripts/linux/${BUILD_TARGET}/usr/share/cura/
195         cp -a Power/power scripts/linux/${BUILD_TARGET}/usr/share/cura/
196         echo $BUILD_NAME > scripts/linux/${BUILD_TARGET}/usr/share/cura/Cura/version
197         sudo chown root:root scripts/linux/${BUILD_TARGET} -R
198         sudo chmod 755 scripts/linux/${BUILD_TARGET}/usr -R
199         sudo chmod 755 scripts/linux/${BUILD_TARGET}/DEBIAN -R
200         cd scripts/linux
201         dpkg-deb --build ${BUILD_TARGET} $(dirname ${TARGET_DIR})/cura_${BUILD_NAME}-${BUILD_TARGET}.deb
202         sudo chown `id -un`:`id -gn` ${BUILD_TARGET} -R
203         exit
204 fi
205
206
207 #############################
208 # Rest
209 #############################
210
211 #############################
212 # Download all needed files.
213 #############################
214
215 if [ $BUILD_TARGET = "win32" ]; then
216         #Get portable python for windows and extract it. (Linux and Mac need to install python themselfs)
217         downloadURL http://ftp.nluug.nl/languages/python/portablepython/v2.7/PortablePython_${WIN_PORTABLE_PY_VERSION}.exe
218         downloadURL http://sourceforge.net/projects/pyserial/files/pyserial/2.5/pyserial-2.5.win32.exe
219         downloadURL http://sourceforge.net/projects/pyopengl/files/PyOpenGL/3.0.1/PyOpenGL-3.0.1.win32.exe
220         downloadURL http://sourceforge.net/projects/numpy/files/NumPy/1.6.2/numpy-1.6.2-win32-superpack-python2.7.exe
221         downloadURL http://videocapture.sourceforge.net/VideoCapture-0.9-5.zip
222         downloadURL http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20120927-git-13f0cd6-win32-static.7z
223         downloadURL http://sourceforge.net/projects/comtypes/files/comtypes/0.6.2/comtypes-0.6.2.win32.exe
224         downloadURL http://www.uwe-sieber.de/files/ejectmedia.zip
225         #Get the power module for python
226         rm -rf Power
227         git clone https://github.com/GreatFruitOmsk/Power
228         rm -rf CuraEngine
229         git clone ${CURA_ENGINE_REPO}
230 fi
231
232 #############################
233 # Build the packages
234 #############################
235 rm -rf ${TARGET_DIR}
236 mkdir -p ${TARGET_DIR}
237
238 rm -f log.txt
239 if [ $BUILD_TARGET = "win32" ]; then
240         #For windows extract portable python to include it.
241         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/App
242         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/Lib/site-packages
243         extract pyserial-2.5.win32.exe PURELIB
244         extract PyOpenGL-3.0.1.win32.exe PURELIB
245         extract numpy-1.6.2-win32-superpack-python2.7.exe numpy-1.6.2-sse2.exe
246         extract numpy-1.6.2-sse2.exe PLATLIB
247         extract VideoCapture-0.9-5.zip VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd
248         extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe
249         extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/licenses
250         extract comtypes-0.6.2.win32.exe
251         extract ejectmedia.zip Win32
252
253         mkdir -p ${TARGET_DIR}/python
254         mkdir -p ${TARGET_DIR}/Cura/
255         mv \$_OUTDIR/App/* ${TARGET_DIR}/python
256         mv \$_OUTDIR/Lib/site-packages/wx* ${TARGET_DIR}/python/Lib/site-packages/
257         mv PURELIB/serial ${TARGET_DIR}/python/Lib
258         mv PURELIB/OpenGL ${TARGET_DIR}/python/Lib
259         mv PURELIB/comtypes ${TARGET_DIR}/python/Lib
260         mv PLATLIB/numpy ${TARGET_DIR}/python/Lib
261         mv Power/power ${TARGET_DIR}/python/Lib
262         mv VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd ${TARGET_DIR}/python/DLLs
263         mv ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe ${TARGET_DIR}/Cura/
264         mv ffmpeg-20120927-git-13f0cd6-win32-static/licenses ${TARGET_DIR}/Cura/ffmpeg-licenses/
265         mv Win32/EjectMedia.exe ${TARGET_DIR}/Cura/
266         
267         rm -rf Power/
268         rm -rf \$_OUTDIR
269         rm -rf PURELIB
270         rm -rf PLATLIB
271         rm -rf VideoCapture-0.9-5
272         rm -rf numpy-1.6.2-sse2.exe
273         rm -rf ffmpeg-20120927-git-13f0cd6-win32-static
274
275         #Clean up portable python a bit, to keep the package size down.
276         rm -rf ${TARGET_DIR}/python/PyScripter.*
277         rm -rf ${TARGET_DIR}/python/Doc
278         rm -rf ${TARGET_DIR}/python/locale
279         rm -rf ${TARGET_DIR}/python/tcl
280         rm -rf ${TARGET_DIR}/python/Lib/test
281         rm -rf ${TARGET_DIR}/python/Lib/distutils
282         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/tools
283         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/locale
284         #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.
285         rm -rf ${TARGET_DIR}/python/Lib/OpenGL/DLLS/gle*
286
287     #Build the C++ engine
288         mingw32-make -C CuraEngine
289 fi
290
291 #add Cura
292 mkdir -p ${TARGET_DIR}/Cura
293 cp -a Cura/* ${TARGET_DIR}/Cura
294 #Add cura version file
295 echo $BUILD_NAME > ${TARGET_DIR}/Cura/version
296
297 #add script files
298 if [ $BUILD_TARGET = "win32" ]; then
299     cp -a scripts/${BUILD_TARGET}/*.bat $TARGET_DIR/
300     cp CuraEngine/CuraEngine.exe $TARGET_DIR
301 else
302     cp -a scripts/${BUILD_TARGET}/*.sh $TARGET_DIR/
303 fi
304
305 #package the result
306 if (( ${ARCHIVE_FOR_DISTRIBUTION} )); then
307         if [ $BUILD_TARGET = "win32" ]; then
308                 #rm ${TARGET_DIR}.zip
309                 #cd ${TARGET_DIR}
310                 #7z a ../${TARGET_DIR}.zip *
311                 #cd ..
312
313                 if [ ! -z `which wine` ]; then
314                         #if we have wine, try to run our nsis script.
315                         rm -rf scripts/win32/dist
316                         ln -sf `pwd`/${TARGET_DIR} scripts/win32/dist
317                         wine ~/.wine/drive_c/Program\ Files/NSIS/makensis.exe /DVERSION=${BUILD_NAME} scripts/win32/installer.nsi
318                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
319                 fi
320                 if [ -f '/c/Program Files (x86)/NSIS/makensis.exe' ]; then
321                         rm -rf scripts/win32/dist
322                         mv `pwd`/${TARGET_DIR} scripts/win32/dist
323                         '/c/Program Files (x86)/NSIS/makensis.exe' -DVERSION=${BUILD_NAME} 'scripts/win32/installer.nsi' >> log.txt
324                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
325                 fi
326         else
327                 echo "Archiving to ${TARGET_DIR}.tar.gz"
328                 $TAR cfp - ${TARGET_DIR} | gzip --best -c > ${TARGET_DIR}.tar.gz
329         fi
330 else
331         echo "Installed into ${TARGET_DIR}"
332 fi