/ld27

To get this branch, use:
bzr branch /bzr/ld27

« back to all changes in this revision

Viewing changes to build.sh

  • Committer: Josh C
  • Date: 2014-07-06 22:55:23 UTC
  • Revision ID: josh@9ix.org-20140706225523-5dnau1lu753yt0t4
update build.sh for love 0.9

Show diffs side-by-side

added added

removed removed

4
4
 
5
5
# make sure we have löve
6
6
cd deploy/love
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
 
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
10
10
fi
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
 
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
14
14
fi
15
15
cd ../..
16
16
 
26
26
# package win32
27
27
rm -rf decimaze-win32 decimaze-win32.zip
28
28
mkdir decimaze-win32
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
 
29
cat love/love-0.9.1-win32/love.exe decimaze.love >decimaze-win32/decimaze.exe
 
30
cp love/love-0.9.1-win32/*.dll decimaze-win32
31
31
# TODO: this is a spot I could copy a README, LICENSE, or VERSION file in.
32
32
zip -qr decimaze-win32.zip decimaze-win32
33
33