[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/16: gnu: Add docbook-sgml.
From: |
guix-commits |
Subject: |
05/16: gnu: Add docbook-sgml. |
Date: |
Thu, 14 Jan 2021 09:58:48 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit 14ac034dab923103b301d493440448e19b14d4bc
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Jul 3 09:04:41 2018 -0400
gnu: Add docbook-sgml.
* gnu/packages/docbook.scm (docbook-sgml): New variable.
---
gnu/packages/docbook.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/docbook.scm b/gnu/packages/docbook.scm
index c5d8403..ca9c0ec 100644
--- a/gnu/packages/docbook.scm
+++ b/gnu/packages/docbook.scm
@@ -215,6 +215,48 @@ by no means limited to these applications.) This package
provides XML DTDs.")
"This package provides XSL style sheets for DocBook.")
(license (x11-style "" "See 'COPYING' file."))))
+(define-public docbook-sgml
+ (package
+ (name "docbook-sgml")
+ (version "4.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://www.oasis-open.org/docbook/sgml/"
+ version "/docbk41.zip"))
+ (sha256
+ (base32
+ "04b3gp4zkh9c5g9kvnywdkdfkcqx3kjc04j4mpkr4xk7lgqgrany"))))
+ (build-system trivial-build-system)
+ (arguments
+ '(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let ((source (assoc-ref %build-inputs "source"))
+ (iso-entities-dir (string-append
+ (assoc-ref %build-inputs
"iso-8879-entities")))
+ (unzip (string-append (assoc-ref %build-inputs "unzip")
+ "/bin/unzip"))
+ (dtd (string-append (assoc-ref %outputs "out")
+ "/sgml/dtd/docbook")))
+ ;; Extract the sources.
+ (mkdir-p dtd)
+ (chdir dtd)
+ (invoke unzip source)
+ ;; Reference the ISO 8879 character entities.
+ ;; e.g. "iso-lat1.gml" --> "<iso-entities-dir>/ISOlat1"
+ (substitute* "docbook.cat"
+ (("(.*ISO 8879.*)\"iso-(.*)\\.gml\"" _ head name)
+ (string-append head "\"" iso-entities-dir "/ISO" name "\"")))))))
+ (native-inputs
+ `(("unzip" ,unzip)))
+ (inputs
+ `(("iso-8879-entities" ,iso-8879-entities)))
+ (home-page "https://docbook.org")
+ (synopsis "DocBook SGML style sheets for document authoring")
+ (description "This package provides SGML style sheets for DocBook.")
+ (license (x11-style "" "See file headers."))))
+
;;; Private package referenced by docbook-sgml.
(define iso-8879-entities
(package
- branch master updated (88eb537 -> e45dcf4), guix-commits, 2021/01/14
- 01/16: gnu: opensp: Move package to (gnu packages xml)., guix-commits, 2021/01/14
- 04/16: gnu: Add iso-8879-entities., guix-commits, 2021/01/14
- 08/16: gnu: Add docbook-sgml-3.1., guix-commits, 2021/01/14
- 02/16: gnu: opensp: Add doc output, enable tests and add search path., guix-commits, 2021/01/14
- 03/16: gnu: Add openjade., guix-commits, 2021/01/14
- 05/16: gnu: Add docbook-sgml.,
guix-commits <=
- 06/16: gnu: Add docbook-dsssl., guix-commits, 2021/01/14
- 07/16: gnu: Add perl-sgmls., guix-commits, 2021/01/14
- 09/16: gnu: Add texlive-marvosym., guix-commits, 2021/01/14
- 12/16: gnu: Add texlive-jknappen., guix-commits, 2021/01/14
- 10/16: gnu: Add config., guix-commits, 2021/01/14
- 11/16: gnu: Add texlive-tipa., guix-commits, 2021/01/14
- 13/16: gnu: Add texlive-courier., guix-commits, 2021/01/14
- 14/16: gnu: Add texlive-helvetic., guix-commits, 2021/01/14
- 15/16: gnu: Add texlive-wasy., guix-commits, 2021/01/14
- 16/16: gnu: texlive-wasysym: Update synopsis and description., guix-commits, 2021/01/14