mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-14 21:27:01 +02:00
7 lines
184 B
Bash
7 lines
184 B
Bash
#
|
|
# This helper is for templates using R-cran.
|
|
#
|
|
do_install() {
|
|
mkdir -p ${DESTDIR}/usr/lib/R/library
|
|
( cd .. && R CMD INSTALL -l ${DESTDIR}/usr/lib/R/library ${pkgname#R-cran-} )
|
|
}
|