gnu: flac: Install man pages in share/man.
* gnu/packages/xiph.scm (flac): Add --mandir configure flag.
This commit is contained in:
parent
f0cfe3c4d5
commit
c9a010db8a
|
@ -3,6 +3,7 @@
|
||||||
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
||||||
;;; Copyright © 2013 David Thompson <dthompson2@worcester.edu>
|
;;; Copyright © 2013 David Thompson <dthompson2@worcester.edu>
|
||||||
;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in>
|
;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in>
|
||||||
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -202,7 +203,12 @@ OpenBSD's sndio.")
|
||||||
(list (search-patch "flac-fix-memcmp-not-declared.patch")))))
|
(list (search-patch "flac-fix-memcmp-not-declared.patch")))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f))
|
`(#:parallel-tests? #f
|
||||||
|
;; By default, man pages are put in PREFIX/man,
|
||||||
|
;; but we want them in PREFIX/share/man.
|
||||||
|
#:configure-flags (list (string-append "--mandir="
|
||||||
|
(assoc-ref %outputs "out")
|
||||||
|
"/share/man"))))
|
||||||
;; FIXME: configure also looks for xmms, input could be added once it exists
|
;; FIXME: configure also looks for xmms, input could be added once it exists
|
||||||
(inputs `(("libogg" ,libogg)))
|
(inputs `(("libogg" ,libogg)))
|
||||||
(synopsis "flac free lossless audio codec")
|
(synopsis "flac free lossless audio codec")
|
||||||
|
|
Loading…
Reference in New Issue