guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add libeb.


From: guix-commits
Subject: 01/02: gnu: Add libeb.
Date: Mon, 13 Sep 2021 16:42:02 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit 3055d64b3e8092c088d3d26b56b6bec944372cd8
Author: nixo <nicolo@nixo.xyz>
AuthorDate: Sat Sep 4 14:15:27 2021 +0200

    gnu: Add libeb.
    
    * gnu/packages/education.scm (libeb): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/education.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index f0120c8..897dd37 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -1019,6 +1019,32 @@ factoring numbers and simplifying fractions, as well as 
zapping rocks
 floating through space.")
     (license license:gpl3+)))
 
+(define-public libeb
+  (package
+    (name "libeb")
+    (version "4.4.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "ftp://ftp.sra.co.jp/pub/misc/eb/eb-"; version 
".tar.bz2"))
+       (sha256
+        (base32
+         "0psbdzirazfnn02hp3gsx7xxss9f1brv4ywp6a15ihvggjki1rxb"))))
+    (build-system gnu-build-system)
+    (native-inputs ; Required for building docs
+     `(("perl" ,perl)))
+    (inputs
+     `(("zlib" ,zlib)))
+    (synopsis "C library for accessing Japanese CD-ROM books")
+    (description "The EB library is a library for accessing CD-ROM
+books, which are a common way to distribute electronic dictionaries in
+Japan.  It supports the EB, EBG, EBXA, EBXA-C, S-EBXA and EPWING
+formats.")
+    ;; FIXME: I cannot find a real home page
+    (home-page "https://sra.co.jp/";)
+    (license license:bsd-3)))
+
 (define-public mdk
   (package
     (name "mdk")



reply via email to

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