mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add opensp.
* gnu/packages/finance.scm (opensp): New variable.
This commit is contained in:
parent
dc4469e968
commit
63ca1a8908
1 changed files with 53 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
||||||
;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
|
;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||||
;;; Copyright © 2019 Martin Becze <mjbecze@riseup.net>
|
;;; Copyright © 2019 Martin Becze <mjbecze@riseup.net>
|
||||||
;;; Copyright © 2019 Sebastian Schott <sschott@mailbox.org>
|
;;; Copyright © 2019 Sebastian Schott <sschott@mailbox.org>
|
||||||
|
;;; Copyright © 2020 Kei Kebreau <kkebreau@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -52,10 +53,12 @@ (define-module (gnu packages finance)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages crypto)
|
#:use-module (gnu packages crypto)
|
||||||
#:use-module (gnu packages databases)
|
#:use-module (gnu packages databases)
|
||||||
|
#:use-module (gnu packages docbook)
|
||||||
#:use-module (gnu packages documentation)
|
#:use-module (gnu packages documentation)
|
||||||
#:use-module (gnu packages dns)
|
#:use-module (gnu packages dns)
|
||||||
#:use-module (gnu packages emacs)
|
#:use-module (gnu packages emacs)
|
||||||
#:use-module (gnu packages dbm)
|
#:use-module (gnu packages dbm)
|
||||||
|
#:use-module (gnu packages gettext)
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
|
@ -1202,3 +1205,53 @@ (define-public bitcoin-abc
|
||||||
fees that BTC. Bitcoin ABC is the reference implementation of the Bitcoin
|
fees that BTC. Bitcoin ABC is the reference implementation of the Bitcoin
|
||||||
Cash protocol. This package provides the Bitcoin Cash command line client and
|
Cash protocol. This package provides the Bitcoin Cash command line client and
|
||||||
a client based on Qt. This is a fork of Bitcoin Core.")))
|
a client based on Qt. This is a fork of Bitcoin Core.")))
|
||||||
|
|
||||||
|
(define-public opensp
|
||||||
|
(package
|
||||||
|
(name "opensp")
|
||||||
|
(version "1.5.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://sourceforge/openjade/opensp/"
|
||||||
|
version "/OpenSP-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1khpasr6l0a8nfz6kcf3s81vgdab8fm2dj291n5r2s53k228kx2p"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("gettext" ,gettext-minimal)))
|
||||||
|
(inputs
|
||||||
|
`(("docbook-xml" ,docbook-xml-4.1.2)
|
||||||
|
("docbook-xsl" ,docbook-xsl)
|
||||||
|
("xmlto" ,xmlto)))
|
||||||
|
(arguments
|
||||||
|
`(;; TODO: Fix and enable tests.
|
||||||
|
#:tests? #f
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-docbook-paths
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(let ((xmldoc (string-append (assoc-ref inputs "docbook-xml")
|
||||||
|
"/xml/dtd/docbook"))
|
||||||
|
(xsldoc (string-append (assoc-ref inputs "docbook-xsl")
|
||||||
|
"/xml/xsl/docbook-xsl-"
|
||||||
|
,(package-version docbook-xsl))))
|
||||||
|
(substitute* (find-files "docsrc" "\\.xml$")
|
||||||
|
(("/usr/share/sgml/docbook/xml-dtd-4.1.2") xmldoc)
|
||||||
|
(("http://.*/docbookx\\.dtd")
|
||||||
|
(string-append xmldoc "/docbookx.dtd")))
|
||||||
|
;; Directly pass the path to the stylesheet to xmlto.
|
||||||
|
(substitute* "docsrc/Makefile.in"
|
||||||
|
(("\\$\\(XMLTO\\)")
|
||||||
|
(string-append "$(XMLTO) -x " xsldoc
|
||||||
|
"/manpages/docbook.xsl")))
|
||||||
|
#t))))))
|
||||||
|
(home-page "http://openjade.sourceforge.net/")
|
||||||
|
(synopsis "Suite of SGML/XML processing tools")
|
||||||
|
(description "OpenSP is an object-oriented toolkit for SGML parsing and
|
||||||
|
entity management.")
|
||||||
|
(license
|
||||||
|
;; expat license with added clause regarding advertising
|
||||||
|
(license:non-copyleft
|
||||||
|
"file://COPYING"
|
||||||
|
"See COPYING in the distribution."))))
|
||||||
|
|
Loading…
Reference in a new issue