So I'm writing an R package. Part of the essential documentation is the DESCRIPTION file. In this DESCRIPTION file there is a line where one must specify the Licensing of the package for CRAN-sharability purposes.
I've tried inputting the license in any and every format I can think of, but it still fails when performing R CMD check --as-cran
, stating
* checking DESCRIPTION meta-information ... WARNING Non-standard license specification: What license is it under? Standardizable: FALSE
So far I've tried:
License: GPL (>=3) License: GPL-3: License: GPL_3 License: GNU Affero General Public License License: GPL
and all of them throw the same error. What, in the name of all that is sacred, is the way this sneaky string is supposed to look like?
DESCRIPTION FILE:
Package: lucas
Type: Package
Title: Package to download and create the DB of LUCAS data harmonized
Version: 1.0
Date: 2020-04-28
Authors@R: c(person("Mom", "Iork", email = "samplemail@mail.com", role = c("aut")), person("La", "Ma", email = "samplemail@mail.com", role = c("cre")))
Maintainer: Jane Doe <samplemail@mail.com>
Authors: Mom Iork <samplemail@mail.com>, Jane Doe <samplemail@mail.com>, John Doe <samplemail@mail.com>
Description: Package to reproduce the harmonized DB of LUCAS points
Depends:
R (>= 3.4),
RPostgreSQL,
rpostgis,
plyr,
stringr
Imports:
RPostgreSQL,
rpostgis,
plyr,
stringr
License: GPL (>=3)
LazyData: TRUE
RoxygenNote: 7.1.0
Encoding: UTF-8