@@ -76,21 +76,7 @@ RcppArmadillo.package.skeleton <- function(name = "anRpackage", list = character
76
76
splitname <- strsplit(author , " " )[[1 ]]
77
77
x <- cbind(read.dcf(DESCRIPTION ),
78
78
" Imports" = sprintf(" Rcpp (>= %s)" , packageDescription(" Rcpp" )[[" Version" ]]),
79
- " LinkingTo" = " Rcpp, RcppArmadillo" ,
80
- " Authors@R" = sprintf(" person(\" %s\" , \" %s\" , role = c(\" aut\" , \" cre\" ), email = \" %s\" )" ,
81
- paste(splitname [- length(splitname )], collapse = " " ),
82
- splitname [length(splitname )],
83
- email ),
84
- " License" = license ,
85
- " Title" = " Concise Summary of What the Package Does" ,
86
- " Description" = " More about what it does (maybe more than one line)." ,
87
- " Version" = " 0.0.1" )
88
- if (! is.na(githubuser )) {
89
- x <- cbind(x , matrix (" " , 1 , 1 , dimnames = list (" " , " URL" )))
90
- x [1 , " URL" ] <- paste0(" https://github.com/" , githubuser , " /" , name )
91
- x <- cbind(x , matrix (" " , 1 , 1 , dimnames = list (" " , " BugReports" )))
92
- x [1 , " BugReports" ] <- paste0(" https://github.com/" , githubuser , " /" , name , " /issues" )
93
- }
79
+ " LinkingTo" = " Rcpp, RcppArmadillo" )
94
80
write.dcf(x , file = DESCRIPTION )
95
81
message(" >> added Imports: Rcpp" )
96
82
message(" >> added LinkingTo: Rcpp, RcppArmadillo" )
0 commit comments