[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/15: gnu: Add skk-jisyo.
From: |
guix-commits |
Subject: |
04/15: gnu: Add skk-jisyo. |
Date: |
Tue, 18 Oct 2022 06:14:55 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit c844489350570bae30442b6d264339029bee4f0f
Author: ROCKTAKEY <rocktakey@gmail.com>
AuthorDate: Sun Oct 16 18:01:47 2022 +0900
gnu: Add skk-jisyo.
* gnu/packages/dictionaries.scm (skk-jisyo): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/dictionaries.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/dictionaries.scm b/gnu/packages/dictionaries.scm
index fa9a78fe80..7024937672 100644
--- a/gnu/packages/dictionaries.scm
+++ b/gnu/packages/dictionaries.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
;;; Copyright © 2020 Lu hux <luhux@outlook.com>
+;;; Copyright © 2022 ROCKTAKEY <rocktakey@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -429,3 +430,41 @@ intelligible and easily correctable.")
(description "sdcv is simple text-based utility for work with dictionaries
in StarDict's format.")
(license license:gpl2+)))
+
+(define-public skk-jisyo
+ (let ((commit "38c81dbc74cdbdead843364023dea837f239a48c")
+ (revision "0"))
+ (package
+ (name "skk-jisyo")
+ (version (git-version "0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/skk-dev/dict")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "121j73bgd7fvj7zvaidqvgzfdvimig3f0vsyfv4vndwfgskh2r7z"))))
+ (build-system copy-build-system)
+ (arguments
+ '(#:install-plan '(("./" "share/skk"
+ #:include-regexp ("SKK-JISYO\\.*")
+ #:exclude-regexp ("\\.gz$" "\\.md5$")
+ #:exclude ("SKK-JISYO.pubdic+"
+ "SKK-JISYO.wrong.annotated"
+ "SKK-JISYO.wrong")))
+ #:phases (modify-phases %standard-phases
+ (add-before 'install 'decompress
+ (lambda* (#:key outputs #:allow-other-keys)
+ (map (lambda (arg)
+ (invoke "gzip" "-v" "-d" arg))
+ (find-files "." "SKK-JISYO\\..*\\.gz$"))
+ (invoke "tar" "xvf" "zipcode.tar.gz"))))))
+ (home-page "https://skk-dev.github.io/dict/")
+ (synopsis "Jisyo (dictionary) files for the SKK Japanese-input software")
+ (description
+ "This package provides @file{SKK-JISYO.L}, the standard dictionary file
+for SKK Japanese input systems, and various dictionary files.
+@file{SKK-JISYO.L} can be used with @code{emacs-ddskk} or @code{uim} package.")
+ (license license:gpl2+))))
- branch master updated (054ddcbbc6 -> 0289312bc9), guix-commits, 2022/10/18
- 12/15: gnu: Add perl-ppix-quotelike., guix-commits, 2022/10/18
- 15/15: gnu: guix-build-coordinator: Update to 0-65.26fe4a7., guix-commits, 2022/10/18
- 14/15: gnu: Add perl-critic., guix-commits, 2022/10/18
- 10/15: gnu: Add perl-string-format., guix-commits, 2022/10/18
- 05/15: gnu: Add perl-commonmark., guix-commits, 2022/10/18
- 11/15: gnu: Add perl-ppix-regexp., guix-commits, 2022/10/18
- 04/15: gnu: Add skk-jisyo.,
guix-commits <=
- 06/15: gnu: Add perl-regexp-grammars., guix-commits, 2022/10/18
- 07/15: gnu: Add perl-config-tiny., guix-commits, 2022/10/18
- 01/15: gnu: textpieces: Reorder dependencies and fix description., guix-commits, 2022/10/18
- 02/15: services: nginx: Use nginx-action over inline gexp., guix-commits, 2022/10/18
- 08/15: gnu: Add perl-pod-spell., guix-commits, 2022/10/18
- 13/15: gnu: Add perl-ppix-utilities., guix-commits, 2022/10/18
- 03/15: services: nginx: Improve reload action documentation., guix-commits, 2022/10/18
- 09/15: gnu: Add perl-readonly-xs., guix-commits, 2022/10/18