summaryrefslogtreecommitdiff
path: root/build_r-base.sh
blob: 3d26cca5e8aedfc915069ae8b384e4150a71fdcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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

apt-get update
apt-get upgrade
apt-get build-dep r-base
apt-get source r-base

cd r-base-*

dpkg-buildpackage -B

cd ..

Contact - Imprint