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

apt-get update
apt-get upgrade

# When doing a new repository, lattice, r-cran-mass and survival have to be
# built first, then nlme and rmatrix, then the rest

# squeeze/wheezy
for i in  r-cran-rjags; do
#for i in lattice rmatrix nlme cluster foreign r-cran-class r-cran-coda r-cran-spatial r-cran-nnet r-cran-mass kernsmooth mgcv rodbc rpart survival littler rpy rpy2 rkward r-cran-rjags; do
    apt-get --no-install-recommends build-dep $i
    apt-get source $i
    cd $i-*

    dpkg-buildpackage -B
 
    cd ..
done

Contact - Imprint