5
# make sure we have löve
7
if [ ! -e love-0.8.0-win-x86.zip ]; then
8
wget https://bitbucket.org/rude/love/downloads/love-0.8.0-win-x86.zip
9
unzip love-0.8.0-win-x86.zip || exit 1
11
if [ ! -e love-0.8.0-macosx-ub.zip ]; then
12
wget https://bitbucket.org/rude/love/downloads/love-0.8.0-macosx-ub.zip
13
unzip love-0.8.0-macosx-ub.zip || exit 1
18
V=`bzr version-info --custom --template={revno}`
19
echo "VERSION = '$V'" >version.lua
20
rm -f deploy/decimaze.love
21
bzr ls -RV |zip -q@ deploy/decimaze.love
22
bzr revert --no-backup version.lua
27
rm -rf decimaze-win32 decimaze-win32.zip
29
cat love/love-0.8.0-win-x86/love.exe decimaze.love >decimaze-win32/decimaze.exe
30
cp love/love-0.8.0-win-x86/*.dll decimaze-win32
31
# TODO: this is a spot I could copy a README, LICENSE, or VERSION file in.
32
zip -qr decimaze-win32.zip decimaze-win32
35
rm -rf "Treasures of the Decimaze.app" decimaze-macosx.zip
36
cp -r love/love.app "Treasures of the Decimaze.app"
37
cp decimaze.love "Treasures of the Decimaze.app"/Contents/Resources/
38
cp ../Info.plist "Treasures of the Decimaze.app"/Contents/
39
zip -qry decimaze-macosx.zip "Treasures of the Decimaze.app"