summaryrefslogtreecommitdiff
path: root/build_all_etch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build_all_etch.sh')
-rw-r--r--build_all_etch.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/build_all_etch.sh b/build_all_etch.sh
new file mode 100644
index 0000000..a4d9046
--- /dev/null
+++ b/build_all_etch.sh
@@ -0,0 +1,20 @@
+#!/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 foreign kernsmooth; do
+for i in boot cluster codetools foreign kernsmooth lattice mgcv nlme rcompgen rpart survival vr littler rkward r-base; do
+ cd $i
+ rm -rf $i*
+ rm *.deb
+ apt-get source $i
+ cd $i-*
+ fakeroot dpkg-buildpackage -B
+ cd ../..
+done

Contact - Imprint