Sophie

Sophie

distrib > Mageia > 3 > x86_64 > by-pkgid > ed855f7c18d8f7387426873c5d69401e > files > 1359

bzr-2.5.1-3.3.mga3.x86_64.rpm

#!/bin/bash
# Helper to build packages for the various distributions

if [ -z "$UBUNTU_RELEASES" ]; then
    echo "Configure the distro platforms that you want to"
    echo "build with a line like:"
    echo '  export UBUNTU_RELEASES="dapper feisty gutsy hardy intrepid jaunty"'
    exit 1
fi

for DISTRO in $UBUNTU_RELEASES; do
    (cd "$PACKAGE-$DISTRO" && bzr builddeb -S)
done