#!/bin/sh # Wrapper around sbuild. The main purpose is to append a # distribution-dependent string like "~ubuntu7.10" to the binary # package version, using Sbuildhack.pm. usage() { echo "Usage: $0 - ..." >&2 exit 1 } dist_arch=$1; shift if [ -z "$dist_arch" ]; then usage; fi IFS=- read dist arch <