blob: 38a753c05c1a1e7a2c4f669f1f3d3a500f025906 (
plain) (
tree)
|
|
#!/bin/bash
# Script to automate building of backported r-base packages for other Debian architectures
# Author: Johannes Ranke <jranke@uni-bremen.de>
apt-get source r-base
cd r-base-*
pdebuild
cd ..
|