blob: 3ff5a4c196bb053a8bf709ba402945b46ad5687d (
plain)
- #!/bin/sh
- set -e
- function showhelp() {
- echo "Usage: $(basename $0) POOL [debbuildopts] [-- pbuilderopts]"
- echo ""
- echo "Example: $(basename $0) sarge_with_hacks -B"
- }
- if [ $# -eq 0 ]; then
- showhelp
- exit 1
- fi
- buildhost=`hostname -s`
- pool=$1; shift
- pbuilderopts=''
- pdebuildopts=''
- debbuildopts=''
- while [ $# -gt 0 ]; do
- case $1 in
- -h|--help)
- showhelp
- exit 0
- ;;
- --)
- shift
- break
- ;;
- --*)
- echo "ERROR: Unknown argument \"$1\"!" &>2
- showhelp
- exit 1
- ;;
- -B)
- debbuildopts="$debbuildopts $1"
- pdebuildopts="$pdebuildopts --use-pdebuild-internal"
- shift
- ;;
- -*)
- debbuildopts="$debbuildopts $1"
- shift
- ;;
- *)
- echo "ERROR: Unknown argument \"$1\"!" &>2
- showhelp
- exit 1
- ;;
- esac
- done
- pbuilderopts="$pbuilderopts $@"
- pdebuild \
- --buildresult $HOME/pub/debian-$buildhost/pbuild-$pool/ \
- ${debbuildopts:+--debbuildopts $debbuildopts} \
- $pdebuildopts \
- -- \
- --basetgz /var/cache/pbuilder/base-$pool.tgz \
- --buildplace /var/cache/pbuilder/build-$pool/ \
- --aptcache /var/cache/pbuilder/aptcache-$pool/ \
- $pbuilderopts
|