[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/27: gnu: Add xmltoman.
From: |
guix-commits |
Subject: |
08/27: gnu: Add xmltoman. |
Date: |
Tue, 18 Aug 2020 17:11:35 -0400 (EDT) |
dannym pushed a commit to branch master
in repository guix.
commit e047b265179b07562a9165200097b2624b58d7c6
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Tue Jul 14 17:21:08 2020 -0400
gnu: Add xmltoman.
* gnu/packages/man.scm (xmltoman): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/man.scm | 36 +++++++++++++++++++++++++++++++++++-
1 file changed, 35 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm
index 6db7b0a..45c8bae 100644
--- a/gnu/packages/man.scm
+++ b/gnu/packages/man.scm
@@ -38,7 +38,41 @@
#:use-module (gnu packages less)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
- #:use-module (gnu packages linux))
+ #:use-module (gnu packages linux)
+ #:use-module (gnu packages xml))
+
+(define-public xmltoman
+ (package
+ (name "xmltoman")
+ (version "0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "https://sourceforge.net/projects/xmltoman/files/"
+ "xmltoman/xmltoman-" version ".tar.gz/xmltoman-"
+ version ".tar.gz/download"))
+ (sha256
+ (base32 "1c0lvzr7kdy63wbn1jv6s126ds7add3pxqb0vlxd3v5a2sir91wl"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; No tests
+ #:make-flags
+ (list
+ (string-append "PREFIX="
+ (assoc-ref %outputs "out")))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure))))
+ (propagated-inputs
+ `(("perl" ,perl)
+ ("perl-xml-parser" ,perl-xml-parser)))
+ (synopsis "XML to Man converter")
+ (description "XMLtoMan and XMLMantoHTML are two small scripts to convert
xml
+to man pages in groff format or html. It features the usual man page items
such
+as description, options, see also, etc.")
+ (home-page "http://xmltoman.sourceforge.net/")
+ (license gpl2+)))
(define-public ronn
(package
- branch master updated (433bb35 -> f10b58c), guix-commits, 2020/08/18
- 03/27: gnu: Add openjpeg-data., guix-commits, 2020/08/18
- 01/27: gnu: Add openni2., guix-commits, 2020/08/18
- 05/27: gnu: Add libthai., guix-commits, 2020/08/18
- 08/27: gnu: Add xmltoman.,
guix-commits <=
- 11/27: gnu: Add glibmm-2.64., guix-commits, 2020/08/18
- 02/27: gnu: Add opensles., guix-commits, 2020/08/18
- 04/27: gnu: Add libdatrie., guix-commits, 2020/08/18
- 06/27: gnu: Add wpewebkit., guix-commits, 2020/08/18
- 07/27: gnu: Add libcamera., guix-commits, 2020/08/18
- 09/27: gnu: Add libsigc++-2., guix-commits, 2020/08/18
- 15/27: gnu: Add zeitgeist., guix-commits, 2020/08/18
- 16/27: gnu: Add poly2tri-c., guix-commits, 2020/08/18
- 24/27: gnu: seed: Fix tests., guix-commits, 2020/08/18
- 12/27: gnu: Add pangomm-2.42., guix-commits, 2020/08/18