7909e3dc4d
Low level spell checker and morphological analyzer based on the famous 'hunspell' library <https://hunspell.github.io>. The package can analyze or check individual words as well as parse text, latex, html or xml documents. For a more user-friendly interface use the 'spelling' package which builds on this package to automate checking of files, documentation and vignettes in all common formats.
22 lines
622 B
Makefile
22 lines
622 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/02/13 15:26:16 mef Exp $
|
|
|
|
R_PKGNAME= hunspell
|
|
R_PKGVER= 3.0
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= High-Performance Stemmer, Tokenizer, and Spell Checker
|
|
LICENSE= gnu-gpl-v2 OR gnu-lgpl-v2.1 OR mpl-1.1
|
|
|
|
DEPENDS+= R-digest>=0.6.20:../../security/R-digest
|
|
|
|
#Packages suggested but not available:
|
|
# 'spelling', 'pdftools', 'janeaustenr', 'wordcloud2', 'stopwords'
|
|
TEST_DEPENDS+= R-spelling-[0-9]*:../../textproc/R-spelling
|
|
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../devel/R-Rcpp/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|