/ld27

To get this branch, use:
bzr branch http://9ix.org/bzr/ld27

« back to all changes in this revision

Viewing changes to build.sh

  • Committer: Josh C
  • Date: 2013-08-25 22:47:18 UTC
  • Revision ID: josh@9ix.org-20130825224718-c93zymxgkm9r3kjh
play silly sound on level switch

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
# make sure we have löve
6
6
cd deploy/love
7
 
if [ ! -e love-0.9.1-win32.zip ]; then
8
 
    wget https://bitbucket.org/rude/love/downloads/love-0.9.1-win32.zip
9
 
    unzip love-0.9.1-win32.zip || exit 1
 
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
10
10
fi
11
 
if [ ! -e love-0.9.1-macosx-x64.zip ]; then
12
 
    wget https://bitbucket.org/rude/love/downloads/love-0.9.1-macosx-x64.zip
13
 
    unzip love-0.9.1-macosx-x64.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
14
14
fi
15
15
cd ../..
16
16
 
17
17
# make the love file
18
18
V=`bzr version-info --custom --template={revno}`
19
19
echo "VERSION = '$V'" >version.lua
20
 
rm -f deploy/decimaze.love
21
 
bzr ls -RV |zip -q@ deploy/decimaze.love
 
20
rm -f deploy/ld27.love
 
21
bzr ls -RV |zip -q@ deploy/ld27.love
22
22
bzr revert --no-backup version.lua
23
23
 
24
 
grep '^[^-]*require .lovebird.' main.lua && zip deploy/decimaze.love lovebird.lua
25
 
 
26
24
cd deploy
27
25
 
28
26
# package win32
29
 
rm -rf decimaze-win32 decimaze-win32.zip
30
 
mkdir decimaze-win32
31
 
cat love/love-0.9.1-win32/love.exe decimaze.love >decimaze-win32/decimaze.exe
32
 
cp love/love-0.9.1-win32/*.dll decimaze-win32
 
27
rm -rf ld27-win32 ld27-win32.zip
 
28
mkdir ld27-win32
 
29
cat love/love-0.8.0-win-x86/love.exe ld27.love >ld27-win32/ld27.exe
 
30
cp love/love-0.8.0-win-x86/*.dll ld27-win32
33
31
# TODO: this is a spot I could copy a README, LICENSE, or VERSION file in.
34
 
zip -qr decimaze-win32.zip decimaze-win32
 
32
zip -qr ld27-win32.zip ld27-win32
35
33
 
36
34
# package osx
37
 
rm -rf "Treasures of the Decimaze.app" decimaze-macosx.zip
38
 
cp -r love/love.app "Treasures of the Decimaze.app"
39
 
cp decimaze.love "Treasures of the Decimaze.app"/Contents/Resources/
40
 
cp ../Info.plist "Treasures of the Decimaze.app"/Contents/
41
 
zip -qry decimaze-macosx.zip "Treasures of the Decimaze.app"
 
35
rm -rf ld27.app ld27-macosx.zip
 
36
cp -r love/love.app ld27.app
 
37
cp ld27.love ld27.app/Contents/Resources/
 
38
cp ../Info.plist ld27.app/Contents/
 
39
zip -qry ld27-macosx.zip ld27.app
42
40
 
43
41
cd ..