~alaxa27/ultimate-smash-friends/mirror_trunk

« back to all changes in this revision

Viewing changes to pkg/build-package

  • Committer: gaby
  • Date: 2009-11-30 17:03:16 UTC
  • Revision ID: gaby@ks22672.kimsufi.com-20091130170316-6lm3v7q0torulfab
adding code package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env sh
 
2
 
 
3
echo 'Building package'
 
4
dpkg-deb --build ultimate-smash-friends_1.0-beta-1
 
5
 
 
6
echo 'Building complete'
 
7
if [ x$0 = "xbuild-install" ]
 
8
then
 
9
    dpkg -i ultimate-smash-friends_1.0-beta.deb
 
10
    echo 'Installing Complete'
 
11
fi
 
12