blob: ea48dfc46ac9f3125b51085570f98f7045c5f9fd (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#!/bin/bash
# Author: Johannes Ranke <jranke@uni-bremen.de>
usage()
{
echo "Usage: ./build_others [options]"
echo "Options:"
echo " -s Skip apt-get update/upgrade"
}
# Loop over options
skip=false
while test -n "${1}"; do
case "$1" in
-s | --skip)
skip=true
shift
;;
-*)
echo "Error: Unknown option: $1" >&2
usage
exit 1
;;
*) # No more options
break
;;
esac
done
# Update apt
if [ "$skip" = false ]
then
apt-get update
apt-get upgrade
fi
# When doing a new repository, lattice, r-cran-mass and survival have to be
# built first, then nlme and rmatrix, then the rest
# wheezy/jessie/stretch
#for i in lattice r-cran-mass survival; do
#for i in nlme rmatrix; 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 rpy2 rkward r-cran-rjags; do
./build -s $i
done
|