172 lines
		
	
	
	
		
			6.6 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
			
		
		
	
	
			172 lines
		
	
	
	
		
			6.6 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
| ;;; GNU Guix --- Functional package management for GNU
 | |
| ;;; Copyright © 2012, 2014 Ludovic Courtès <ludo@gnu.org>
 | |
| ;;; Copyright © 2014 David Thompson <dthompson2@worcester.edu>
 | |
| ;;;
 | |
| ;;; This file is part of GNU Guix.
 | |
| ;;;
 | |
| ;;; GNU Guix is free software; you can redistribute it and/or modify it
 | |
| ;;; under the terms of the GNU General Public License as published by
 | |
| ;;; the Free Software Foundation; either version 3 of the License, or (at
 | |
| ;;; your option) any later version.
 | |
| ;;;
 | |
| ;;; GNU Guix is distributed in the hope that it will be useful, but
 | |
| ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| ;;; GNU General Public License for more details.
 | |
| ;;;
 | |
| ;;; You should have received a copy of the GNU General Public License
 | |
| ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 | |
| 
 | |
| (define-module (gnu packages man)
 | |
|   #:use-module (guix licenses)
 | |
|   #:use-module (guix download)
 | |
|   #:use-module (guix packages)
 | |
|   #:use-module (guix build-system gnu)
 | |
|   #:use-module (gnu packages flex)
 | |
|   #:use-module (gnu packages gdbm)
 | |
|   #:use-module (gnu packages groff)
 | |
|   #:use-module (gnu packages less)
 | |
|   #:use-module (gnu packages lynx)
 | |
|   #:use-module (gnu packages perl)
 | |
|   #:use-module (gnu packages pkg-config))
 | |
| 
 | |
| (define-public libpipeline
 | |
|   (package
 | |
|     (name "libpipeline")
 | |
|     (version "1.3.0")
 | |
|     (source (origin
 | |
|               (method url-fetch)
 | |
|               (uri (string-append
 | |
|                     "mirror://savannah/libpipeline/libpipeline-"
 | |
|                     version ".tar.gz"))
 | |
|               (sha256
 | |
|                (base32
 | |
|                 "12d6ldcj7kv2nv832b23v97g7035d0ybq0ig7h0yr7xk9czd3z7i"))))
 | |
|     (build-system gnu-build-system)
 | |
|     (home-page "http://libpipeline.nongnu.org/")
 | |
|     (synopsis "C library for manipulating pipelines of subprocesses")
 | |
|     (description
 | |
|      "libpipeline is a C library for manipulating pipelines of subprocesses in
 | |
| a flexible and convenient way.")
 | |
|     (license gpl3+)))
 | |
| 
 | |
| (define-public man-db
 | |
|   (package
 | |
|     (name "man-db")
 | |
|     (version "2.6.6")
 | |
|     (source (origin
 | |
|               (method url-fetch)
 | |
|               (uri (string-append "mirror://savannah/man-db/man-db-"
 | |
|                                   version ".tar.xz"))
 | |
|               (sha256
 | |
|                (base32
 | |
|                 "1hv6byj6sg6cp3jyf08gbmdm4pwhvd5hzmb94xl0w7prin6hzabx"))))
 | |
|     (build-system gnu-build-system)
 | |
|     (arguments
 | |
|      '(#:phases
 | |
|        (alist-cons-after
 | |
|         'patch-source-shebangs 'patch-test-shebangs
 | |
|         (lambda* (#:key outputs #:allow-other-keys)
 | |
|           ;; Patch shebangs in test scripts.
 | |
|           (let ((out (assoc-ref outputs "out")))
 | |
|             (for-each (lambda (file)
 | |
|                         (substitute* file
 | |
|                           (("#! /bin/sh")
 | |
|                            (string-append "#!" (which "sh")))))
 | |
|                       (remove file-is-directory?
 | |
|                               (find-files "src/tests" ".*")))))
 | |
|         %standard-phases)
 | |
|        #:configure-flags
 | |
|        (let ((groff (assoc-ref %build-inputs "groff"))
 | |
|              (less  (assoc-ref %build-inputs "less"))
 | |
|              (gzip  (assoc-ref %build-inputs "gzip"))
 | |
|              (bzip2  (assoc-ref %build-inputs "bzip2"))
 | |
|              (xz  (assoc-ref %build-inputs "xz")))
 | |
|          ;; Invoke groff, less, gzip, bzip2, and xz directly from the store.
 | |
|          (append (list "--disable-setuid" ;; Disable setuid man user.
 | |
|                        (string-append "--with-pager=" less "/bin/less")
 | |
|                        (string-append "--with-gzip=" gzip "/bin/gzip")
 | |
|                        (string-append "--with-bzip2=" bzip2 "/bin/gzip")
 | |
|                        (string-append "--with-xz=" xz "/bin/xz"))
 | |
|                  (map (lambda (prog)
 | |
|                         (string-append "--with-" prog "=" groff "/bin/" prog))
 | |
|                       '("nroff" "eqn" "neqn" "tbl" "refer" "pic"))))
 | |
|        #:modules ((guix build gnu-build-system)
 | |
|                   (guix build utils)
 | |
|                   (srfi srfi-1))))
 | |
|     (native-inputs
 | |
|      `(("pkg-config" ,pkg-config)))
 | |
|     (inputs
 | |
|      `(("flex" ,flex)
 | |
|        ("gdbm" ,gdbm)
 | |
|        ("groff" ,groff)
 | |
|        ("less" ,less)
 | |
|        ("libpipeline" ,libpipeline)))
 | |
|     (native-search-paths
 | |
|      (list (search-path-specification
 | |
|             (variable "MANPATH")
 | |
|             (directories '("share/man")))))
 | |
|     (home-page "http://man-db.nongnu.org/")
 | |
|     (synopsis "Standard Unix documentation system")
 | |
|     (description
 | |
|      "Man-db is an implementation of the standard Unix documentation system
 | |
| accessed using the man command.  It uses a Berkeley DB database in place of
 | |
| the traditional flat-text whatis databases.")
 | |
|     (license gpl2+)))
 | |
| 
 | |
| (define-public man-pages
 | |
|   (package
 | |
|     (name "man-pages")
 | |
|     (version "3.64")
 | |
|     (source (origin
 | |
|               (method url-fetch)
 | |
|               (uri (string-append
 | |
|                     "mirror://kernel.org/linux/docs/man-pages/man-pages-"
 | |
|                     version ".tar.xz"))
 | |
|               (sha256
 | |
|                (base32
 | |
|                 "1p9zk130c852gqci6dyw57yaqx4v871n8n82kkccdpj7y63xr4bl"))))
 | |
|     (build-system gnu-build-system)
 | |
|     (arguments
 | |
|      '(#:phases (alist-delete 'configure %standard-phases)
 | |
|        #:tests? #f
 | |
|        #:make-flags (list (string-append "MANDIR="
 | |
|                                          (assoc-ref %outputs "out")
 | |
|                                          "/share/man"))))
 | |
|     (home-page "http://www.kernel.org/doc/man-pages/")
 | |
|     (synopsis "Development manual pages from the Linux project")
 | |
|     (description
 | |
|      "This package provides traditional Unix \"man pages\" documenting the
 | |
| Linux kernel and C library interfaces employed by user-space programs.")
 | |
| 
 | |
|     ;; Each man page has its own license; some are GPLv2+, some are MIT/X11.
 | |
|     (license gpl2+)))
 | |
| 
 | |
| (define-public help2man
 | |
|   (package
 | |
|     (name "help2man")
 | |
|     (version "1.45.1")
 | |
|     (source
 | |
|      (origin
 | |
|       (method url-fetch)
 | |
|       (uri (string-append "mirror://gnu/help2man/help2man-"
 | |
|                           version ".tar.xz"))
 | |
|       (sha256
 | |
|        (base32
 | |
|         "1hk7ciqinq7djdb7s94y3jxh06rp8i93bpjmg4r40cniws8wf3y7"))))
 | |
|     (build-system gnu-build-system)
 | |
|     (arguments `(;; There's no `check' target.
 | |
|                  #:tests? #f))
 | |
|     (inputs
 | |
|      `(("perl" ,perl)
 | |
|        ;; TODO: Add these optional dependencies.
 | |
|        ;; ("perl-LocaleGettext" ,perl-LocaleGettext)
 | |
|        ;; ("gettext" ,gnu-gettext)
 | |
|        ))
 | |
|     (home-page "http://www.gnu.org/software/help2man/")
 | |
|     (synopsis "Automatically generate man pages from program --help")
 | |
|     (description
 | |
|      "GNU help2man is a program that converts the output of standard
 | |
| \"--help\" and \"--version\" command-line arguments into a manual page
 | |
| automatically.")
 | |
|     (license gpl3+)))
 |