Result in dist-arch/result
[git-tools-moved-to-github.git] / id-deb-build / pbuilderrc
1 # The distribution should be correct in your changelog file.
2 # Uncomment this line to use the one listed there:
3 # https://wiki.ubuntu.com/PbuilderHowto
4 #DIST=`dpkg-parsechangelog | awk '/^Distribution: / {print $2}'`
5
6 : ${DIST:=$(lsb_release --short --codename)}
7 : ${ARCH:=$(dpkg --print-architecture)}
8 NAME="$DIST-$ARCH"
9 DISTRIBUTION="$DIST"
10 DEBOOTSTRAPOPTS=("--arch" "$ARCH" "${DEBOOTSTRAPOPTS[@]}")
11 BASETGZ="`dirname $BASETGZ`/$NAME-base.tgz"
12 #BUILDRESULT="/var/cache/pbuilder/$NAME/result/"
13 BUILDRESULT="$NAME/result/"
14 APTCACHE="/var/cache/pbuilder/$NAME/aptcache/"
15
16 case "$DIST" in
17     intrepid|hardy|gutsy) # ubuntu specific
18         MIRRORSITE="http://mirrors.kernel.org/ubuntu/"
19         COMPONENTS="main restricted universe multiverse"
20         ;;
21     lenny|etch) # debian specific
22         MIRRORSITE="http://ftp.se.debian.org/debian/"
23         COMPONENTS="main contrib non-free"
24         OTHERMIRROR="deb http://ftp.indexdata.dk/debian $DIST main"
25         ;;
26     *)
27         echo "Unknown distribution: $DIST"
28         exit 1
29         ;;
30 esac