summaryrefslogtreecommitdiff
path: root/build_all_etch.sh
blob: 9ffb44b2f5415879bac77cdc5ae135b3aec26921 (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.

# Author: Johannes Ranke <jranke@uni-bremen.de> and
#         Vincent Goulet <vincent.goulet@act.ulaval.ca>

#DEBEMAIL=jranke@uni-bremen.de
#DEBFULLNAME="Johannes Ranke"

#for i in cluster; do
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
    # fakeroot dpkg-buildpackage -B
    cd ../..
done

Contact - Imprint