The usual windows packaging stuff
[tabakrolletjie.git] / packaging / makensis
1 #!/bin/sh
2 # Usage: makensis
3
4 NSI_FILE="`dirname $0`/tabakrolletjie.nsi"
5 WS_VERSION=`sed -nre 's/( *)version="(.*)",/\2/p' setup.py`
6 TMP_NSI="$NSI_FILE.tmp"
7
8 # We include the pre-SP1 version of the MS redistibutable package  - there are
9 # contradictory reports of whether the SP1 release will work with python 2.7,
10 # so I haven't tested it. Thiis version works for me
11 # This is all for the 32 bit version
12 if [ ! -f "dist/vcredist_x86.exe" ]; then
13    echo "Please copy the required vcredist_x86.exe version into dist/"
14    echo "(version downloaded from http://www.microsoft.com/downloads/en/details.aspx?FamilyID=9b2da534-3e03-4391-8a4d-074b9f2bc1b)"
15    exit
16 else
17    # md5sum from 2011-06-25 - MS haven't changed this package in some
18    # time, so hopefully this will stay valid
19    EXPECTED="b936f0f378b9a35489353e878154e899"
20    MD5=`md5sum dist/vcredist_x86.exe | cut -d " " -f 1`
21    if [ "$MD5" != "$EXPECTED" ]; then
22       echo "Unexpected md5sum for vcredist_x86.exe"
23       echo "expected $EXPECTED, got $MD5"
24       exit
25    fi
26 fi
27
28 cp "$NSI_FILE" "$TMP_NSI"
29 sed -i -e "s#\\(\\s*!define WS_VERSION\\).*#\\1 \"$WS_VERSION\"#" "$TMP_NSI"
30 makensis "$TMP_NSI"
31 rm "$TMP_NSI"