/ld28

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

« back to all changes in this revision

Viewing changes to build.sh

  • Committer: Josh C
  • Date: 2013-12-14 04:19:19 UTC
  • Revision ID: josh@9ix.org-20131214041919-p4awvb0gf7axmzc1
add a couple other clones that move randomly

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
mkdir -p deploy/love
4
 
 
5
 
# make sure we have löve
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
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
14
 
fi
15
 
cd ../..
16
 
 
17
 
# make the love file
18
 
V=`bzr version-info --custom --template={revno}`
19
 
echo "VERSION = '$V'" >version.lua
20
 
rm -f deploy/ld28.love
21
 
bzr ls -RV |zip -q@ deploy/ld28.love
22
 
bzr revert --no-backup version.lua
23
 
 
24
 
cd deploy
25
 
 
26
 
# package win32
27
 
rm -rf ld28-win32 ld28-win32.zip
28
 
mkdir ld28-win32
29
 
cat love/love-0.8.0-win-x86/love.exe ld28.love >ld28-win32/ld28.exe
30
 
cp love/love-0.8.0-win-x86/*.dll ld28-win32
31
 
# TODO: this is a spot I could copy a README, LICENSE, or VERSION file in.
32
 
zip -qr ld28-win32.zip ld28-win32
33
 
 
34
 
# package osx
35
 
rm -rf "Ld28.app" ld28-macosx.zip
36
 
cp -r love/love.app "Ld28.app"
37
 
cp ld28.love "Ld28.app"/Contents/Resources/
38
 
cp ../Info.plist "Ld28.app"/Contents/
39
 
zip -qry ld28-macosx.zip "Ld28.app"
40
 
 
41
 
cd ..