Fix windows installer name
[naja.git] / packaging / wine-py2exe
1 #!/bin/sh
2 # wine-py2exe
3 #
4 # Usage: wine-py2exe
5
6 WS_VERSION=`sed -nre 's/VERSION_STR = "(.*)"/\1/p' setup.py`
7 BUILD_FOLDER="naja-${WS_VERSION}"
8 ZIP_NAME="${BUILD_FOLDER}.zip"
9 PY2EXE_LOG="py2exe.log"
10
11 WINE_PYTHON=`winepath "C:/Python27"`
12 WINE_SYS32=`winepath "C:/windows/system32"`
13
14 #
15 # Run py2exe build under wine
16 #
17
18 echo "=== Running wine python setup.py ==="
19 echo ""
20 echo "  Robolock II version: ${WS_VERSION}"
21 echo "  Writing log to ${PY2EXE_LOG}."
22 echo ""
23 echo "  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
24 echo "  WARNING: After running please fix the naja.exe"
25 echo "           checksum and executable size using PETools!"
26 echo "  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
27 echo ""
28
29 rm -rf "dist/${BUILD_FOLDER}"
30 mkdir -p "dist/${BUILD_FOLDER}"
31 rm -rf "dist/${ZIP_NAME}"
32
33 wine python setup.py py2exe >${PY2EXE_LOG} 2>&1
34
35 #
36 # Copy dependencies py2exe missed
37 #
38
39 echo "=== Copying dependencies that py2exe missed ==="
40 echo ""
41
42 DEST="dist/${BUILD_FOLDER}"
43
44 cp -v "${WINE_PYTHON}/python27.dll" "${DEST}"
45
46 echo "'data' -> '${DEST}/data'"
47 cp -R data ${DEST}/data
48
49 echo "'${WINE_PYTHON}/Lib/site-packages/pygame' -> '${DEST}'"
50 rm -rf "${DEST}/pygame"
51 cp -R "${WINE_PYTHON}/Lib/site-packages/pygame" "${DEST}"
52 rm -rf "${DEST}/pygame/examples" "${DEST}/pygame/tests" "${DEST}/pygame/docs"
53
54 #
55 # create zip file
56 #
57
58 echo "=== Creating zip of patched py2exe dist folder ==="
59 echo ""
60 echo "  Zip file: dist/${ZIP_NAME}"
61 echo "  Build folder: dist/${BUILD_FOLDER}"
62 echo ""
63
64 cd dist
65 rm -f "$ZIP_NAME"
66 zip -r -q "$ZIP_NAME" "$BUILD_FOLDER"
67 cd ..
68
69 echo "=== Done ==="
70 echo ""
71 echo -n "  "; du -sh dist/${ZIP_NAME}
72 echo -n "  "; du -sh dist/${BUILD_FOLDER}
73 echo ""