blob: ca48af380295bd6502a187096d19607f45e198ae (
plain) (
tree)
|
|
#!/bin/bash
# Script to facilitate building r-base binaries for CRAN in a chroot
# Matching CRAN sources must be in /etc/apt/sources.list of the chroot
# Author: Johannes Ranke <jranke@uni-bremen.de>
apt-get update
apt-get build-dep r-base
apt-get source r-base
cd r-base-*
dpkg-buildpackage -B
cd ..
|