gnu: unzip: Install man pages in share/man.
* gnu/packages/zip.scm (unzip): Substitute /share/man/ for /man/ in Makefile.
This commit is contained in:
parent
f6b272fa18
commit
809e9b52bb
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||||
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -89,7 +90,9 @@ Compression ratios of 2:1 to 3:1 are common for text files.")
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out")))
|
(let* ((out (assoc-ref outputs "out")))
|
||||||
(copy-file "unix/Makefile" "Makefile")
|
(copy-file "unix/Makefile" "Makefile")
|
||||||
(substitute* "Makefile" (("/usr/local") out))))
|
(substitute* "Makefile"
|
||||||
|
(("/usr/local") out)
|
||||||
|
(("/man/") "/share/man/"))))
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(home-page "http://www.info-zip.org/UnZip.html")
|
(home-page "http://www.info-zip.org/UnZip.html")
|
||||||
(synopsis "Unzip decompression and file extraction utility")
|
(synopsis "Unzip decompression and file extraction utility")
|
||||||
|
|
Loading…
Reference in New Issue