diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-03-17 09:59:28 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-03-17 13:03:50 -0500 |
commit | 95d2eec1a8b6d8a5803a6911bec5d9f38951337b (patch) | |
tree | e14b59aa0cb435b0e0be8baf361fd68e7b433ac7 /gnu | |
parent | 6afe59593b29c21fbd1e80ed589edad2b05bf828 (diff) | |
download | patches-95d2eec1a8b6d8a5803a6911bec5d9f38951337b.tar patches-95d2eec1a8b6d8a5803a6911bec5d9f38951337b.tar.gz |
gnu: Add Lingua-Stem-Ru.
* gnu/packages/language.scm (perl-lingua-stem-ru): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/language.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/language.scm b/gnu/packages/language.scm index ad222c785b..ae972f961f 100644 --- a/gnu/packages/language.scm +++ b/gnu/packages/language.scm @@ -189,3 +189,22 @@ Algorithm to return a stemmed French word.") (description "This module applies the Porter Stemming Algorithm to its parameters, returning the stemmed Italian word.") (license (package-license perl)))) + +(define-public perl-lingua-stem-ru + (package + (name "perl-lingua-stem-ru") + (version "0.01") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/A/AL/ALGDR/" + "Lingua-Stem-Ru-" version ".tar.gz")) + (sha256 + (base32 + "0pqgg442fkf12ayh9fgmpa8q9x0iqx6s96181r52yn7s7pcs61h6")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Lingua-Stem-Ru") + (synopsis "Porter's stemming algorithm for Russian") + (description "This module applies the Porter Stemming Algorithm to its +parameters, returning the stemmed Russian (KOI8-R only) word.") + (license (package-license perl)))) |