mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 20:10:39 +02:00
gnu: Add libskk.
* gnu/packages/language.scm (libskk): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f5fd741474
commit
68d79a8b60
1 changed files with 29 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
;;; Copyright © 2019 Alex Vong <alexvong1995@gmail.com>
|
;;; Copyright © 2019 Alex Vong <alexvong1995@gmail.com>
|
||||||
;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu>
|
||||||
|
;;; Copyright © 2022 Milran <milranmike@protonmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -923,3 +924,31 @@ noun phrases, verb phrases, etc.).")
|
||||||
analysis (pitch, formant, intensity, ...), speech synthesis, labelling, segmenting
|
analysis (pitch, formant, intensity, ...), speech synthesis, labelling, segmenting
|
||||||
and manipulation.")
|
and manipulation.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public libskk
|
||||||
|
(package
|
||||||
|
(name "libskk")
|
||||||
|
(version "1.0.5")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ueno/libskk")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0y279pcgs3jrsi9vzx086xhz9jbz23dqqijp4agygc9ackp9sxy5"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs (list autoconf
|
||||||
|
automake
|
||||||
|
gettext-minimal
|
||||||
|
gobject-introspection
|
||||||
|
libtool
|
||||||
|
pkg-config
|
||||||
|
vala))
|
||||||
|
(inputs (list libgee json-glib libxkbcommon))
|
||||||
|
(home-page "https://github.com/ueno/libskk")
|
||||||
|
(synopsis "Dealing with Japanese kana-to-kanji conversion")
|
||||||
|
(description
|
||||||
|
"libskk is a library to deal with Japanese kana-to-kanji conversion method.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue