~bzr-pqm/bzr/bzr.dev

0.11.1 by Lukáš Lalinský
Initial import
1
#!/bin/bash
3649.4.1 by John Arbash Meinel
Merge in Lukáš's helper scripts.
2
# A helper script to build packages for the various distributions
0.11.1 by Lukáš Lalinský
Initial import
3
4009.1.2 by Vincent Ladeuil
Fixed as per Matt, Jelmer and John reviews.
4
if [ -z "$UBUNTU_RELEASES" ]; then
5
    echo "Configure the distro platforms that you want to"
6
    echo "build with a line like:"
7
    echo '  export UBUNTU_RELEASES="dapper feisty gutsy hardy intrepid jaunty"'
8
    exit 1
9
fi
10
3649.4.1 by John Arbash Meinel
Merge in Lukáš's helper scripts.
11
for DISTRO in $UBUNTU_RELEASES; do
4380.1.1 by John Ferlito
Update packaging scripts to make deployment a bit easier
12
    (cd "$PACKAGE-$DISTRO" && bzr builddeb -S)
0.11.1 by Lukáš Lalinský
Initial import
13
done