mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 20:57:12 -05:00
gnu: Add r-striprtf.
* gnu/packages/cran.scm (r-striprtf): New variable.
This commit is contained in:
parent
804fad34e8
commit
e415003202
1 changed files with 23 additions and 0 deletions
|
@ -27545,3 +27545,26 @@ (define-public r-textclean
|
||||||
text but not always easily handled by analysis algorithms. The
|
text but not always easily handled by analysis algorithms. The
|
||||||
@code{replace_emoticon()} function replaces emoticons with word equivalents.")
|
@code{replace_emoticon()} function replaces emoticons with word equivalents.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public r-striprtf
|
||||||
|
(package
|
||||||
|
(name "r-striprtf")
|
||||||
|
(version "0.5.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "striprtf" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1ra6aalalig6drsj26z9s24lmb10zssagqrvgqqi4358zbm8gwcd"))))
|
||||||
|
(properties `((upstream-name . "striprtf")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-magrittr" ,r-magrittr)
|
||||||
|
("r-rcpp" ,r-rcpp)
|
||||||
|
("r-stringr" ,r-stringr)))
|
||||||
|
(home-page "https://github.com/kota7/striprtf")
|
||||||
|
(synopsis "Extract Text from RTF File")
|
||||||
|
(description
|
||||||
|
"Extracts plain text from @dfn{Rich Text Format} (RTF) file.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue