summaryrefslogtreecommitdiff
path: root/old/build_all_lenny.sh
blob: 979ebe60e7708c7ec5ec606aed79b080e9076668 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

# Script to automate building of r-cran-* packages for Debian for architectures
# other than the originally backported i386 packages.  
# This worked flawlessly for amd64 with the fresh R 2.8.1 backport to etch,
# if an archive containing the backported source packages is the only deb-src
# entry in /etc/apt/sources.list 
# Last Change: 2008 Dez 23

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

for i in rkward littler; do
#for i in cluster foreign kernsmooth lattice mgcv nlme rodbc 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