chiark / gitweb /
Initial package.sh script builder for FreeBSD.
[cura.git] / package.sh
1 #!/usr/bin/env 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:-none}
12 #BUILD_TARGET=win32
13 #BUILD_TARGET=darwin
14 #BUILD_TARGET=debian_i386
15 #BUILD_TARGET=debian_amd64
16 #BUILD_TARGET=freebsd
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.05-RC4
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         if [ $? != 0 ]; then
64         echo "Failed to extract $*"
65         exit 1
66         fi
67 }
68
69 #############################
70 # Actual build script
71 #############################
72 if [ "$BUILD_TARGET" = "none" ]; then
73         echo "You need to specify a build target with:"
74         echo "$0 win32"
75         echo "$0 debian_i368"
76         echo "$0 debian_amd64"
77         echo "$0 darwin"
78         echo "$0 freebsd"
79         exit 0
80 fi
81
82 # Change working directory to the directory the script is in
83 # http://stackoverflow.com/a/246128
84 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
85 cd $SCRIPT_DIR
86
87 checkTool git "git: http://git-scm.com/"
88 checkTool curl "curl: http://curl.haxx.se/"
89 if [ $BUILD_TARGET = "win32" ]; then
90         #Check if we have 7zip, needed to extract and packup a bunch of packages for windows.
91         checkTool 7z "7zip: http://www.7-zip.org/"
92         checkTool mingw32-make "mingw: http://www.mingw.org/"
93 fi
94 #For building under MacOS we need gnutar instead of tar
95 if [ -z `which gnutar` ]; then
96         TAR=tar
97 else
98         TAR=gnutar
99 fi
100
101
102 #############################
103 # Darwin
104 #############################
105
106 if [ "$BUILD_TARGET" = "darwin" ]; then
107     TARGET_DIR=Cura-${BUILD_NAME}-MacOS
108
109         rm -rf scripts/darwin/build
110         rm -rf scripts/darwin/dist
111
112         python build_app.py py2app
113         rc=$?
114         if [[ $rc != 0 ]]; then
115                 echo "Cannot build app."
116                 exit 1
117         fi
118
119     #Add cura version file (should read the version from the bundle with pyobjc, but will figure that out later)
120     echo $BUILD_NAME > scripts/darwin/dist/Cura.app/Contents/Resources/version
121         rm -rf CuraEngine
122         git clone ${CURA_ENGINE_REPO}
123     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
124         make -C CuraEngine VERSION=${BUILD_NAME}
125     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
126         cp CuraEngine/build/CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine
127
128         cd scripts/darwin
129
130         # Install QuickLook plugin
131         mkdir -p dist/Cura.app/Contents/Library/QuickLook
132         cp -a STLQuickLook.qlgenerator dist/Cura.app/Contents/Library/QuickLook/
133
134         # Archive app
135         cd dist
136         $TAR cfp - Cura.app | gzip --best -c > ../../../${TARGET_DIR}.tar.gz
137         cd ..
138
139         # Create sparse image for distribution
140         hdiutil detach /Volumes/Cura\ -\ Ultimaker/
141         rm -rf Cura.dmg.sparseimage
142         hdiutil convert DmgTemplateCompressed.dmg -format UDSP -o Cura.dmg
143         hdiutil resize -size 500m Cura.dmg.sparseimage
144         hdiutil attach Cura.dmg.sparseimage
145         cp -a dist/Cura.app /Volumes/Cura\ -\ Ultimaker/Cura/
146         hdiutil detach /Volumes/Cura\ -\ Ultimaker
147         hdiutil convert Cura.dmg.sparseimage -format UDZO -imagekey zlib-level=9 -ov -o ../../${TARGET_DIR}.dmg
148         exit
149 fi
150
151 #############################
152 # FreeBSD by cederom@tlen.pl
153 #############################
154
155 if [ "$BUILD_TARGET" = "freebsd" ]; then
156         export CXX="c++"
157         rm -rf Power
158         if [ ! -d "Power" ]; then
159                 git clone https://github.com/GreatFruitOmsk/Power
160         else
161                 cd Power
162                 git pull
163                 cd ..
164         fi
165         rm -rf CuraEngine
166         git clone ${CURA_ENGINE_REPO}
167     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
168         gmake -j4 -C CuraEngine VERSION=${BUILD_NAME}
169     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
170         rm -rf scripts/freebsd/dist
171         mkdir -p scripts/freebsd/dist/usr/local/share/cura
172         mkdir -p scripts/freebsd/dist/usr/local/share/applications
173         mkdir -p scripts/freebsd/dist/usr/local/bin
174         cp -a Cura scripts/freebsd/dist/usr/local/share/cura/
175         cp -a resources scripts/freebsd/dist/usr/local/share/cura/
176         cp -a plugins scripts/freebsd/dist/usr/local/share/cura/
177         cp -a CuraEngine/build/CuraEngine scripts/freebsd/dist/usr/local/share/cura/
178         cp scripts/freebsd/cura.py scripts/freebsd/dist/usr/local/share/cura/
179         cp scripts/freebsd/cura.desktop scripts/freebsd/dist/usr/local/share/applications/
180         cp scripts/freebsd/cura scripts/freebsd/dist/usr/local/bin/
181         cp -a Power/power scripts/freebsd/dist/usr/local/share/cura/
182         echo $BUILD_NAME > scripts/freebsd/dist/usr/local/share/cura/Cura/version
183         # Create archive or package if root
184         if [ `whoami` == "root" ]; then
185             echo "Building a package for FreeBSD not yet implemented! Use the port Luke!"
186         else
187             echo "You are not root, building simple package archive..."
188             cd scripts/freebsd/dist
189             pwd
190             $TAR czf ../../../${TARGET_DIR}.tar.gz *
191         fi
192         exit
193 fi
194
195 #############################
196 # Debian 32bit .deb
197 #############################
198
199 if [ "$BUILD_TARGET" = "debian_i386" ]; then
200     export CXX="g++ -m32"
201         if [ ! -d "Power" ]; then
202                 git clone https://github.com/GreatFruitOmsk/Power
203         else
204                 cd Power
205                 git pull
206                 cd ..
207         fi
208         rm -rf CuraEngine
209         git clone ${CURA_ENGINE_REPO}
210     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
211         make -C CuraEngine VERSION=${BUILD_NAME}
212     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
213         rm -rf scripts/linux/${BUILD_TARGET}/usr/share/cura
214         mkdir -p scripts/linux/${BUILD_TARGET}/usr/share/cura
215         cp -a Cura scripts/linux/${BUILD_TARGET}/usr/share/cura/
216         cp -a resources scripts/linux/${BUILD_TARGET}/usr/share/cura/
217         cp -a plugins scripts/linux/${BUILD_TARGET}/usr/share/cura/
218         cp -a CuraEngine/build/CuraEngine scripts/linux/${BUILD_TARGET}/usr/share/cura/
219         cp scripts/linux/cura.py scripts/linux/${BUILD_TARGET}/usr/share/cura/
220         cp -a Power/power scripts/linux/${BUILD_TARGET}/usr/share/cura/
221         echo $BUILD_NAME > scripts/linux/${BUILD_TARGET}/usr/share/cura/Cura/version
222         sudo chown root:root scripts/linux/${BUILD_TARGET} -R
223         sudo chmod 755 scripts/linux/${BUILD_TARGET}/usr -R
224         sudo chmod 755 scripts/linux/${BUILD_TARGET}/DEBIAN -R
225         cd scripts/linux
226         dpkg-deb --build ${BUILD_TARGET} $(dirname ${TARGET_DIR})/cura_${BUILD_NAME}-${BUILD_TARGET}.deb
227         sudo chown `id -un`:`id -gn` ${BUILD_TARGET} -R
228         exit
229 fi
230
231 #############################
232 # Debian 64bit .deb
233 #############################
234
235 if [ "$BUILD_TARGET" = "debian_amd64" ]; then
236     export CXX="g++ -m64"
237         if [ ! -d "Power" ]; then
238                 git clone https://github.com/GreatFruitOmsk/Power
239         else
240                 cd Power
241                 git pull
242                 cd ..
243         fi
244         rm -rf CuraEngine
245         git clone ${CURA_ENGINE_REPO}
246     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
247         make -C CuraEngine
248     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
249         rm -rf scripts/linux/${BUILD_TARGET}/usr/share/cura
250         mkdir -p scripts/linux/${BUILD_TARGET}/usr/share/cura
251         cp -a Cura scripts/linux/${BUILD_TARGET}/usr/share/cura/
252         cp -a resources scripts/linux/${BUILD_TARGET}/usr/share/cura/
253         cp -a plugins scripts/linux/${BUILD_TARGET}/usr/share/cura/
254         cp -a CuraEngine/build/CuraEngine scripts/linux/${BUILD_TARGET}/usr/share/cura/
255         cp scripts/linux/cura.py scripts/linux/${BUILD_TARGET}/usr/share/cura/
256         cp -a Power/power scripts/linux/${BUILD_TARGET}/usr/share/cura/
257         echo $BUILD_NAME > scripts/linux/${BUILD_TARGET}/usr/share/cura/Cura/version
258         sudo chown root:root scripts/linux/${BUILD_TARGET} -R
259         sudo chmod 755 scripts/linux/${BUILD_TARGET}/usr -R
260         sudo chmod 755 scripts/linux/${BUILD_TARGET}/DEBIAN -R
261         cd scripts/linux
262         dpkg-deb --build ${BUILD_TARGET} $(dirname ${TARGET_DIR})/cura_${BUILD_NAME}-${BUILD_TARGET}.deb
263         sudo chown `id -un`:`id -gn` ${BUILD_TARGET} -R
264         exit
265 fi
266
267 #############################
268 # Rest
269 #############################
270
271 #############################
272 # Download all needed files.
273 #############################
274
275 if [ $BUILD_TARGET = "win32" ]; then
276         #Get portable python for windows and extract it. (Linux and Mac need to install python themselfs)
277         downloadURL http://ftp.nluug.nl/languages/python/portablepython/v2.7/PortablePython_${WIN_PORTABLE_PY_VERSION}.exe
278         downloadURL http://sourceforge.net/projects/pyserial/files/pyserial/2.5/pyserial-2.5.win32.exe
279         downloadURL http://sourceforge.net/projects/pyopengl/files/PyOpenGL/3.0.1/PyOpenGL-3.0.1.win32.exe
280         downloadURL http://sourceforge.net/projects/numpy/files/NumPy/1.6.2/numpy-1.6.2-win32-superpack-python2.7.exe
281         downloadURL http://videocapture.sourceforge.net/VideoCapture-0.9-5.zip
282         #downloadURL http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20120927-git-13f0cd6-win32-static.7z
283         downloadURL http://sourceforge.net/projects/comtypes/files/comtypes/0.6.2/comtypes-0.6.2.win32.exe
284         downloadURL http://www.uwe-sieber.de/files/ejectmedia.zip
285         #Get the power module for python
286         rm -rf Power
287         git clone https://github.com/GreatFruitOmsk/Power
288         rm -rf CuraEngine
289         git clone ${CURA_ENGINE_REPO}
290     if [ $? != 0 ]; then echo "Failed to clone CuraEngine"; exit 1; fi
291 fi
292
293 #############################
294 # Build the packages
295 #############################
296 rm -rf ${TARGET_DIR}
297 mkdir -p ${TARGET_DIR}
298
299 rm -f log.txt
300 if [ $BUILD_TARGET = "win32" ]; then
301         #For windows extract portable python to include it.
302         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/App
303         extract PortablePython_${WIN_PORTABLE_PY_VERSION}.exe \$_OUTDIR/Lib/site-packages
304         extract pyserial-2.5.win32.exe PURELIB
305         extract PyOpenGL-3.0.1.win32.exe PURELIB
306         extract numpy-1.6.2-win32-superpack-python2.7.exe numpy-1.6.2-sse2.exe
307         extract numpy-1.6.2-sse2.exe PLATLIB
308         extract VideoCapture-0.9-5.zip VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd
309         #extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe
310         #extract ffmpeg-20120927-git-13f0cd6-win32-static.7z ffmpeg-20120927-git-13f0cd6-win32-static/licenses
311         extract comtypes-0.6.2.win32.exe
312         extract ejectmedia.zip Win32
313
314         mkdir -p ${TARGET_DIR}/python
315         mkdir -p ${TARGET_DIR}/Cura/
316         mv \$_OUTDIR/App/* ${TARGET_DIR}/python
317         mv \$_OUTDIR/Lib/site-packages/wx* ${TARGET_DIR}/python/Lib/site-packages/
318         mv PURELIB/serial ${TARGET_DIR}/python/Lib
319         mv PURELIB/OpenGL ${TARGET_DIR}/python/Lib
320         mv PURELIB/comtypes ${TARGET_DIR}/python/Lib
321         mv PLATLIB/numpy ${TARGET_DIR}/python/Lib
322         mv Power/power ${TARGET_DIR}/python/Lib
323         mv VideoCapture-0.9-5/Python27/DLLs/vidcap.pyd ${TARGET_DIR}/python/DLLs
324         #mv ffmpeg-20120927-git-13f0cd6-win32-static/bin/ffmpeg.exe ${TARGET_DIR}/Cura/
325         #mv ffmpeg-20120927-git-13f0cd6-win32-static/licenses ${TARGET_DIR}/Cura/ffmpeg-licenses/
326         mv Win32/EjectMedia.exe ${TARGET_DIR}/Cura/
327         
328         rm -rf Power/
329         rm -rf \$_OUTDIR
330         rm -rf PURELIB
331         rm -rf PLATLIB
332         rm -rf VideoCapture-0.9-5
333         rm -rf numpy-1.6.2-sse2.exe
334         #rm -rf ffmpeg-20120927-git-13f0cd6-win32-static
335
336         #Clean up portable python a bit, to keep the package size down.
337         rm -rf ${TARGET_DIR}/python/PyScripter.*
338         rm -rf ${TARGET_DIR}/python/Doc
339         rm -rf ${TARGET_DIR}/python/locale
340         rm -rf ${TARGET_DIR}/python/tcl
341         rm -rf ${TARGET_DIR}/python/Lib/test
342         rm -rf ${TARGET_DIR}/python/Lib/distutils
343         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/tools
344         rm -rf ${TARGET_DIR}/python/Lib/site-packages/wx-2.8-msw-unicode/wx/locale
345         #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.
346         rm -rf ${TARGET_DIR}/python/Lib/OpenGL/DLLS/gle*
347
348     #Build the C++ engine
349         mingw32-make -C CuraEngine VERSION=${BUILD_NAME}
350     if [ $? != 0 ]; then echo "Failed to build CuraEngine"; exit 1; fi
351 fi
352
353 #add Cura
354 mkdir -p ${TARGET_DIR}/Cura ${TARGET_DIR}/resources ${TARGET_DIR}/plugins
355 cp -a Cura/* ${TARGET_DIR}/Cura
356 cp -a resources/* ${TARGET_DIR}/resources
357 cp -a plugins/* ${TARGET_DIR}/plugins
358 #Add cura version file
359 echo $BUILD_NAME > ${TARGET_DIR}/Cura/version
360
361 #add script files
362 if [ $BUILD_TARGET = "win32" ]; then
363     cp -a scripts/${BUILD_TARGET}/*.bat $TARGET_DIR/
364     cp CuraEngine/build/CuraEngine.exe $TARGET_DIR
365 else
366     cp -a scripts/${BUILD_TARGET}/*.sh $TARGET_DIR/
367 fi
368
369 #package the result
370 if (( ${ARCHIVE_FOR_DISTRIBUTION} )); then
371         if [ $BUILD_TARGET = "win32" ]; then
372                 #rm ${TARGET_DIR}.zip
373                 #cd ${TARGET_DIR}
374                 #7z a ../${TARGET_DIR}.zip *
375                 #cd ..
376
377                 if [ ! -z `which wine` ]; then
378                         #if we have wine, try to run our nsis script.
379                         rm -rf scripts/win32/dist
380                         ln -sf `pwd`/${TARGET_DIR} scripts/win32/dist
381                         wine ~/.wine/drive_c/Program\ Files/NSIS/makensis.exe /DVERSION=${BUILD_NAME} scripts/win32/installer.nsi
382             if [ $? != 0 ]; then echo "Failed to package NSIS installer"; exit 1; fi
383                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
384                 fi
385                 if [ -f '/c/Program Files (x86)/NSIS/makensis.exe' ]; then
386                         rm -rf scripts/win32/dist
387                         mv `pwd`/${TARGET_DIR} scripts/win32/dist
388                         '/c/Program Files (x86)/NSIS/makensis.exe' -DVERSION=${BUILD_NAME} 'scripts/win32/installer.nsi' >> log.txt
389             if [ $? != 0 ]; then echo "Failed to package NSIS installer"; exit 1; fi
390                         mv scripts/win32/Cura_${BUILD_NAME}.exe ./
391                 fi
392         else
393                 echo "Archiving to ${TARGET_DIR}.tar.gz"
394                 $TAR cfp - ${TARGET_DIR} | gzip --best -c > ${TARGET_DIR}.tar.gz
395         fi
396 else
397         echo "Installed into ${TARGET_DIR}"
398 fi