summaryrefslogtreecommitdiff
path: root/build_others.sh
blob: 95d68f48cd776052087d4446112cc9c169ac9517 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Author: Johannes Ranke <jranke@uni-bremen.de>

# On Debian I used to run this script as root. On Ubuntu I now run it with 
# sudo -E sh build_others.sh

# Preconditions: - shell variables DIST and ARCH
#                - matching CRAN sources in /etc/apt/sources/list
#                - cdbs installed (and maybe more)

echo Distribution is $DIST
echo Architecture is $ARCH

apt-get update
pbuilder update

#for i in r-cran-rjags; do
#for i in cluster foreign lattice mgcv nlme r-cran-class r-cran-spatial r-cran-nnet r-cran-mass kernsmooth rmatrix rodbc rpart survival littler; do
for i in cluster foreign lattice mgcv nlme r-cran-class r-cran-spatial r-cran-nnet r-cran-mass kernsmooth rmatrix rodbc rpart survival littler rpy rkward r-cran-rjags; do
    apt-get source $i
    cd $i-*

    pdebuild --buildresult /home/ranke/svn/website/www/ranke/r-cran/$DIST-cran/ -- --binary-arch --distribution $DIST --basetgz /var/cache/pbuilder/$DIST-$ARCH-base.tgz --aptcache /var/cache/pbuilder/$DIST-$ARCH/aptcache --buildplace /var/cache/pbuilder/$DIST-$ARCH/build
    cd ..
done

Contact - Imprint