blob: b64126b5317a4f657b6d0bf13e4b854898ebe90a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#! /bin/bash
# this is sourced from pbuilder packages to process the optional parameters.
. /etc/pbuilderrc
# the default is to add a PID in the buildplace specified in the config file.
BASEBUILDPLACE="$BUILDPLACE"
BUILDPLACE="$BUILDPLACE/$$"
while [ -n "$1" ]; do
case "$1" in
--basetgz)
BASETGZ=$(readlink -f "$2");
shift; shift;
;;
--buildplace)
BUILDPLACE=$(readlink -f "$2");
shift; shift;
;;
--mirror)
MIRROR="$2";
shift; shift;
;;
--http-proxy)
export http_proxy="$2";
shift; shift;
;;
--distribution)
DISTRIBUTION="$2";
shift; shift;
;;
--buildresult)
BUILDRESULT=$(readlink -f "$2");
shift; shift;
;;
--help)
cat <<EOF
Command Line Options:
--basetgz [base.tgz location]
--buildplace [location of build]
--mirror [mirror location]
--http-proxy [proxy]
--distribution [distribution(woody/sid)]
--buildresult [location-to-copy-build-result]
EOF
exit 1;
;;
--*)
echo "Error: Unknown option [$1] was specified " >&2
exit 1;
;;
*)
break;
;;
esac
done
|