diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-05-01 15:40:36 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-04 15:35:44 +0200 |
commit | 4ae9274ae9786a1a70f7cf5fc32419c3408356e2 (patch) | |
tree | 7e8df1b8daac184336d2c923217be5ff31fe2564 /gnu/packages/audio.scm | |
parent | 84979374c2d3f1b997098c0501dbc7354f4c4303 (diff) | |
download | guix-4ae9274ae9786a1a70f7cf5fc32419c3408356e2.tar guix-4ae9274ae9786a1a70f7cf5fc32419c3408356e2.tar.gz |
gnu: snd: Version documentation directory.
* gnu/packages/audio.scm (snd)[arguments]: Install documentation to the
conventional location. Remove redundant MKDIR-P. Align cosmetically.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 97e2a49f6a..978b023058 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -3253,7 +3253,7 @@ on the ALSA software PCM plugin.") "1vm0dy5qlycqkima7y5ajzvazyjybifa803fabjcpncjz08c26vp")))) (build-system glib-or-gtk-build-system) (arguments - '(#:tests? #f ; no tests + `(#:tests? #f ; no tests #:out-of-source? #f ; for the 'install-doc' phase #:configure-flags (let* ((out (assoc-ref %outputs "out")) @@ -3265,13 +3265,13 @@ on the ALSA software PCM plugin.") (add-after 'install 'install-doc (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) - (docdir (string-append out "/share/doc/snd"))) - (mkdir-p docdir) + (doc (string-append out "/share/doc/" + ,name "-" ,version))) (for-each (lambda (f) - (install-file f docdir)) + (install-file f doc)) (find-files "." "\\.html$|COPYING")) - (copy-recursively "pix" (string-append docdir "/pix")) + (copy-recursively "pix" (string-append doc "/pix")) #t)))))) (native-inputs `(("pkg-config" ,pkg-config))) |