blob: 8f0dddc12e96795356b045c76fe474882141bec7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#!/bin/sh -e
#
# This script builds a binary install package of OpenSCAD for Windows
# using a cross-built mingw OpenSCAD and the NSIS installer system
#
# This script must be run from the OpenSCAD source root directory
#
# Usage: ./scripts/mingw-x-build-installer.sh
#
# Result: binary installer in $DEPLOYDIR directory
#
#
# Prerequisites:
#
# source ./scripts/setenv-mingw-xbuild.sh
# ./scripts/mingw-x-build-dependencues.sh
#
# and then build openscad before running this script.
#
# You need MCAD. run 'git submodule init && git submodule update'
#
# You need the Nullsoft installer system, on ubuntu 'sudo apt-get install nsis'
#
# You need to copy/paste the FileAssociation.nsh file from
# http://nsis.sourceforge.net/File_Association into DEPLOYDIR
# (it has no license information so cannot be included directly)
#
# Also see http://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Cross-compiling_for_Windows_on_Linux_or_Mac_OS_X
#
OPENSCADDIR=$PWD
if [ ! -f $OPENSCADDIR/openscad.pro ]; then
echo "Must be run from the OpenSCAD source root directory"
exit 0
fi
. ./scripts/setenv-mingw-xbuild.sh
if [ ! -e $OPENSCADDIR/libraries/MCAD ]; then
echo "Downloading MCAD"
git submodule init
git submodule update
fi
if [ ! -e $DEPLOYDIR ]; then
echo $DEPLOYDIR "empty. Please build OpenSCAD for mingw32 first."
exit 0
fi
if [ ! -e $DEPLOYDIR/openscad.exe ]; then
echo "Can't find" $DEPLOYDIR"/openscad.exe Please build OpenSCAD for mingw32 first."
exit 0
fi
if [ ! "`command -v makensis`" ]; then
echo "makensis not found. please install nsis"
exit 0
fi
if [ ! -e $DEPLOYDIR/FileAssociation.nsh ]; then
echo "Please install FileAssociation.nsh into" $DEPLOYDIR
echo "You can copy/paste it from http://nsis.sourceforge.net/File_Association"
fi
echo "Copying files to" $DEPLOYDIR
cp -av $OPENSCADDIR/libraries $DEPLOYDIR
cp -av $OPENSCADDIR/examples $DEPLOYDIR
cp -av $OPENSCADDIR/scripts/installer.nsi $DEPLOYDIR
echo "running nsis"
cd $DEPLOYDIR && makensis installer.nsi
cd $OPENSCADDIR
INSTALLFILE=$DEPLOYDIR/openscad_setup.exe
if [ -e $INSTALLFILE ]; then
echo "Build complete. Install file ready: $INSTALLFILE"
else
echo "Build failed. Sorry."
fi
|