Added a script to build on our supported dists.
[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 APTCACHE="/var/cache/pbuilder/$NAME/aptcache/"
14
15 case "$DIST" in
16     intrepid|hardy|gutsy) # ubuntu specific
17         MIRRORSITE="http://mirrors.kernel.org/ubuntu/"
18         COMPONENTS="main restricted universe multiverse"
19         ;;
20     lenny|etch) # debian specific
21         MIRRORSITE="http://ftp.se.debian.org/debian/"
22         COMPONENTS="main contrib non-free"
23         OTHERMIRROR="deb http://ftp.indexdata.dk/debian $DIST main"
24         ;;
25     *)
26         echo "Unknown distribution: $DIST"
27         exit 1
28         ;;
29 esac