summaryrefslogtreecommitdiff
path: root/build_others.sh
blob: 0ce6f5c8794a9fd1eaf72d347033fbfd1160a42f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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/jessie
#for i in  lattice r-cran-mass survival; do
#for i in  nlme rmatrix; do
#for i in cluster foreign r-cran-class r-cran-spatial r-cran-nnet kernsmooth mgcv rodbc rpart littler rpy rpy2 rkward r-cran-rjags; do
for i in lattice rmatrix nlme cluster foreign r-cran-class r-cran-spatial r-cran-nnet r-cran-mass kernsmooth mgcv rodbc rpart survival littler rpy 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