# pkgbuild 1.1.0 * `compile_dll()` now supports automatic cpp11 registration if the package links to cpp11. * `rtools_needed` returns correct version instead of "custom" (@burgerga, #97) # pkgbuild 1.0.8 * Fixes for capability RStudio 1.2. and Rtools 40, R 4.0.0 # pkgbuild 1.0.7 * Additional fixes for Rtools 40
25 lines
717 B
Makefile
25 lines
717 B
Makefile
# $NetBSD: Makefile,v 1.3 2020/09/22 08:37:54 mef Exp $
|
|
|
|
R_PKGNAME= pkgbuild
|
|
R_PKGVER= 1.1.0
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Find tools needed to build R packages
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
DEPENDS+= R-callr>=3.2.0:../../devel/R-callr
|
|
DEPENDS+= R-cli>=1.1.0:../../devel/R-cli
|
|
DEPENDS+= R-crayon>=1.3.4:../../devel/R-crayon
|
|
DEPENDS+= R-desc>=1.2.0:../../devel/R-desc
|
|
DEPENDS+= R-rprojroot>=1.3.2:../../devel/R-rprojroot
|
|
DEPENDS+= R-withr>=2.1.2:../../devel/R-withr
|
|
DEPENDS+= R-prettyunits>=1.0.2:../../math/R-prettyunits
|
|
|
|
TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
|
|
|
|
# need for make test
|
|
USE_LANGUAGES= c
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|