-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathRcppArmadillo.package.skeleton.Rd
75 lines (69 loc) · 2.85 KB
/
RcppArmadillo.package.skeleton.Rd
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
\name{RcppArmadillo.package.skeleton}
\alias{RcppArmadillo.package.skeleton}
\title{
Create a skeleton for a new package that intends to use RcppArmadillo
}
\description{
\code{RcppArmadillo.package.skeleton} automates the creation of
a new source package that intends to use features of RcppArmadilo.
It is based on the \link[utils]{package.skeleton} function
which it executes first.
}
\usage{
RcppArmadillo.package.skeleton(name = "anRpackage", list = character(),
environment = .GlobalEnv, path = ".", force = FALSE,
code_files = character(), example_code = TRUE, author = "Your Name",
maintainer = if (missing(author)) "Your Name" else author,
email = "your@email.com", githubuser = NA_character_,
license = "GPL (>= 2)")
}
\arguments{
\item{name}{See \link[utils]{package.skeleton}}
\item{list}{See \link[utils]{package.skeleton}}
\item{environment}{See \link[utils]{package.skeleton}}
\item{path}{See \link[utils]{package.skeleton}}
\item{force}{See \link[utils]{package.skeleton}}
\item{code_files}{See \link[utils]{package.skeleton}}
\item{example_code}{If TRUE, example c++ code using RcppArmadillo is added to the package}
\item{author}{Author of the package.}
\item{maintainer}{Maintainer of the package.}
\item{email}{Email of the package maintainer.}
\item{githubuser}{GitHub username for URL and BugReports, if present.}
\item{license}{License of the package.}
}
\details{
In addition to \link[utils]{package.skeleton} :
The \samp{DESCRIPTION} file gains a Depends line requesting that
the package depends on Rcpp and RcppArmadillo and
a LinkingTo line so that the package finds Rcpp and RcppArmadillo header files.
The \samp{NAMESPACE}, if any, gains a \code{useDynLib} directive.
The \samp{src} directory is created if it does not exists and
a \samp{Makevars} file is added setting the environment variable
\samp{PKG_LIBS} to accomodate the necessary flags
to link with the Rcpp library.
If the \code{example_code} argument is set to \code{TRUE},
example files \samp{rcpparma_hello_world.h} and \samp{rcpparma_hello_world.cpp}
are also created in the \samp{src}. An R file \samp{rcpparma_hello_world.R} is
expanded in the \samp{R} directory, the \code{rcpparma_hello_world} function
defined in this files makes use of the C++ function \samp{rcpparma_hello_world}
defined in the C++ file. These files are given as an example and should
eventually by removed from the generated package.
}
\value{
Nothing, used for its side effects
}
\seealso{
\link[utils]{package.skeleton}
}
\references{
Read the \emph{Writing R Extensions} manual for more details.
Once you have created a \emph{source} package you need to install it:
see the \emph{R Installation and Administration} manual,
\code{\link{INSTALL}} and \code{\link{install.packages}}.
}
\examples{
\dontrun{
RcppArmadillo.package.skeleton( "foobar" )
}
}
\keyword{ programming }