blob: 4549fee343a1aaee10ed7af0864457d21578d4d4 (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo "When using functionality that depends on R you must install the"
echo "following R packages:"
echo "inline, gam, Rcpp, RcppGSL, ggplot2"
}
post_upgrade() {
post_install
}
|