diff options
author | ranke <ranke@f247ebf9-aa24-0410-a698-f940e971ad2b> | 2007-07-01 16:54:56 +0000 |
---|---|---|
committer | ranke <ranke@f247ebf9-aa24-0410-a698-f940e971ad2b> | 2007-07-01 16:54:56 +0000 |
commit | 881c6d46825075080db99874a323149c799299d0 (patch) | |
tree | 83a55b0297c69f789c16a1551c0a5cbaa3189df0 | |
parent | fa02f905e9be32fb15733d1aafc9c023e1e49dc1 (diff) |
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
-rw-r--r-- | build_recommended_etch.sh | 23 |
1 files changed, 23 insertions, 0 deletions
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 <jranke@uni-bremen.de> and +# Vincent Goulet <vincent.goulet@act.ulaval.ca> + +#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 |