~ara/notify-osd/dailybuilds

« back to all changes in this revision

Viewing changes to karmic.sh

  • Committer: Ara Pulido
  • Date: 2009-09-01 15:28:00 UTC
  • Revision ID: ara@ubuntu.com-20090901152800-tt4ikqbgn6lw5hs4
Testing recipe

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
echo -n "Checking for builder plugin: "
 
4
BUILDER_PLUGIN=`bzr plugins | grep ^builder | wc -l`
 
5
if [ $BUILDER_PLUGIN -eq 1 ] ; then
 
6
        echo "Found"
 
7
else
 
8
        echo "Not installed"
 
9
        echo $BUILDER_PLUGIN
 
10
        exit 0
 
11
fi
 
12
 
 
13
TEMPDIR=`mktemp -d /tmp/bzr-builddeb-XXXXXX`
 
14
 
 
15
echo "Building karmic"
 
16
bzr dailydeb karmic.recipe $TEMPDIR --package notify-osd --distribution karmic
 
17
 
 
18
cd $TEMPDIR
 
19
cd notify-osd*
 
20
./configure
 
21
make check
 
22