summaryrefslogtreecommitdiff
path: root/build_others.sh
blob: 350150a8b15be3b3c74cf197c39f235a483fde92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Author: Johannes Ranke <jranke@uni-bremen.de>

# Preconditions: - shell variables DIST and ARCH
#                - CRAN sources in /etc/apt/sources/list

echo Distribution is $DIST
echo Architecture is $ARCH

apt-get update

for i in cluster foreign kernsmooth lattice mgcv nlme rmatrix rodbc rpart survival vr littler; do
    apt-get source -t $DIST-cran $i
    cd $i-*

    pdebuild --debbuildopts '-b' --buildresult /home/ranke/svn/website/www/ranke/r-cran/$DIST-cran/ -- --distribution $DIST --basetgz /var/cache/pbuilder/$DIST-$ARCH-base.tgz --aptcache /exthd/pbuilder/$DIST-$ARCH/aptcache --buildplace /exthd/pbuilder/$DIST-$ARCH/build
done

Contact - Imprint