blob: 03d2ddcd935b0c6b0a60c0e461890a0588be7ea6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# $NetBSD: Makefile,v 1.12 2019/04/20 12:46:05 wen Exp $
CATEGORIES= devel
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= ${R_HOMEPAGE_BASE}/Rcpp/
COMMENT= Seamless R and C++ Integration
LICENSE= gnu-gpl-v2
R_PKGNAME= Rcpp
R_PKGVER= 1.0.1
USE_LANGUAGES+= c++
REPLACE_R+= inst/examples/*/*.r
REPLACE_R+= inst/examples/SugarPerformance/sugarBenchmarks.R \
inst/unitTests/runit.Date.R
REPLACE_RSCRIPT+= inst/discovery/cxx0x.R
REPLACE_SH+= inst/examples/ConvolveBenchmarks/buildAndRun.sh
REPLACE_SH+= inst/examples/ConvolveBenchmarks/overhead.sh
REPLACE_INTERPRETER+= R
REPLACE.R.old= /usr/bin/env r
REPLACE.R.new= ${PREFIX}/bin/R
REPLACE_FILES.R= ${REPLACE_R}
REPLACE_INTERPRETER+= Rscript
REPLACE.Rscript.old= .*Rscript
REPLACE.Rscript.new= ${PREFIX}/bin/Rscript
REPLACE_FILES.Rscript= ${REPLACE_RSCRIPT}
CHECK_SSP_SKIP+= lib/R/library/Rcpp/unitTests/bin/*/*.deb
.include "../../math/R/Makefile.extension"
.include "../../mk/bsd.pkg.mk"
|