guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

371/416: gnu: Add mecab-unidic.


From: guix-commits
Subject: 371/416: gnu: Add mecab-unidic.
Date: Fri, 14 Apr 2023 15:26:27 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit c16251be058c221100a6acfd46e41929b613df9d
Author: Julien Lepiller <julien@lepiller.eu>
AuthorDate: Mon Jul 4 21:42:02 2022 +0200

    gnu: Add mecab-unidic.
    
    * gnu/packages/language.scm (mecab-unidic): New variable.
---
 gnu/packages/language.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/language.scm b/gnu/packages/language.scm
index f643136873..208fab4f5b 100644
--- a/gnu/packages/language.scm
+++ b/gnu/packages/language.scm
@@ -1006,3 +1006,28 @@ Corporation.  The engine is independent of any language, 
dictionary or corpus.")
     (description "This package contains dictionnary data derived from
 ipadic for use with MeCab.")
     (license (license:non-copyleft "mecab-ipadic/COPYING"))))
+
+(define-public mecab-unidic
+  (package
+    (name "mecab-unidic")
+    (version "3.1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append 
"https://clrd.ninjal.ac.jp/unidic_archive/cwj/";
+                                  version "/unidic-cwj-" version ".zip"))
+              (sha256
+               (base32
+                "1z132p2q3bgchiw529j2d7dari21kn0fhkgrj3vcl0ncg2m521il"))))
+    (build-system copy-build-system)
+    (arguments
+     `(#:install-plan
+       '(("." "lib/mecab/dic"
+          #:include-regexp ("\\.bin$" "\\.def$" "\\.dic$" "dicrc")))))
+    (native-inputs (list unzip))
+    (home-page "https://clrd.ninjal.ac.jp/unidic/en/";)
+    (synopsis "Dictionary data for MeCab")
+    (description "UniDic for morphological analysis is a dictionary for
+analysis with the morphological analyser MeCab, where the short units exported
+from the database are used as entries (heading terms).")
+    ;; triple-licensed (at the user’s choice)
+    (license (list license:gpl2+ license:lgpl2.1 license:bsd-3))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]