summaryrefslogtreecommitdiff
path: root/build_all_etch.sh
blob: f19d30b009e252f795deaaa189897cf4132544c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# Script to automate building of r-cran-* packages for Debian.
# This worked flawlessly with the fresh R 2.7.1 backport
# Last Change: 2008 Jun 25

# Author: Johannes Ranke <jranke@uni-bremen.de> and

for i in cluster foreign kernsmooth lattice mgcv nlme rpart survival vr littler rpy rkward; do
	cd $i
	rm -rf $i*
	rm *.deb
    apt-get source $i
    cd $i-*
    pdebuild
    cd ../..
done

Contact - Imprint