From 881c6d46825075080db99874a323149c799299d0 Mon Sep 17 00:00:00 2001 From: ranke Date: Sun, 1 Jul 2007 16:54:56 +0000 Subject: Added the binary build script that I use for doing the amd64 builds git-svn-id: svn+ssh://stiller/home/schatz/reps/r-backports@18 f247ebf9-aa24-0410-a698-f940e971ad2b --- build_recommended_etch.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 build_recommended_etch.sh diff --git a/build_recommended_etch.sh b/build_recommended_etch.sh new file mode 100644 index 0000000..3dcfc09 --- /dev/null +++ b/build_recommended_etch.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# Script to automate building of r-cran-* packages for Debian. + +# Author: Johannes Ranke and +# Vincent Goulet + +#DEBEMAIL=jranke@uni-bremen.de +#DEBFULLNAME="Johannes Ranke" +text="Recompiled on etch for CRAN" + +#for i in codetools; do +for i in boot cluster codetools foreign kernsmooth lattice mgcv nlme rcompgen rpart survival vr; do + cd $i + rm -rf $i* + rm *.deb + apt-get source -t unstable $i + cd $i-* + version=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`~etchcran.1 + dch -b -v $version -D etch-cran $text + fakeroot dpkg-buildpackage -B + cd ../.. +done -- cgit v1.2.1