diff options
author | Mark H Weaver <mhw@netris.org> | 2014-03-21 03:14:54 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-03-22 10:34:14 -0400 |
commit | c9a010db8a5c7409ed218ce7d0ea82acdfa4d98c (patch) | |
tree | ce801717e2b784bad28d7d4b56dcab8c2d11b594 /gnu/packages/xiph.scm | |
parent | f0cfe3c4d5129b9e10f65ce1f7cb516468d962cf (diff) | |
download | guix-c9a010db8a5c7409ed218ce7d0ea82acdfa4d98c.tar guix-c9a010db8a5c7409ed218ce7d0ea82acdfa4d98c.tar.gz |
gnu: flac: Install man pages in share/man.
* gnu/packages/xiph.scm (flac): Add --mandir configure flag.
Diffstat (limited to 'gnu/packages/xiph.scm')
-rw-r--r-- | gnu/packages/xiph.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm index a9b1ed8ec9..2de9074f28 100644 --- a/gnu/packages/xiph.scm +++ b/gnu/packages/xiph.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org> ;;; Copyright © 2013 David Thompson <dthompson2@worcester.edu> ;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in> +;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -202,7 +203,12 @@ OpenBSD's sndio.") (list (search-patch "flac-fix-memcmp-not-declared.patch"))))) (build-system gnu-build-system) (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 (inputs `(("libogg" ,libogg))) (synopsis "flac free lossless audio codec") |