#!/bin/sh if [ $# -eq 0 ]; then echo "Usage: $(basename $0) POOL [ DISTRIBUTION [ OTHERMIRROR] ]" echo "" echo "Examples:" echo " $(basename $0) sarge" echo " $(basename $0) sarge+hacks sarge 'deb http://example.com/ sarge hacks'" exit 1 fi pool=$1 distro=${2:-$pool} basepath="/var/cache/pbuilder/cow-$pool" aptcache="/var/cache/pbuilder/aptcache-$pool/" buildresult="$HOME/src/pbuild-$pool/" sudo cowbuilder --create \ --buildresult "$buildresult" \ --distribution "$distro" \ --basepath "$basepath" \ --aptcache "$aptcache" \ ${3:+--othermirror "$3"}