summaryrefslogtreecommitdiff
path: root/build_jags.sh
blob: 4727dbfa1ae79c631276559279afed4f1e43ee0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# Script to facilitate building jags 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 jags
apt-get source jags

cd jags-*

dpkg-buildpackage -B

cd ..

Contact - Imprint