mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: squashfs-tools: Install some documentation.
* gnu/packages/compression.scm (squashfs-tools)[arguments]: Add a new 'install-documentation phase. Remove an obsolete #t whilst here.
This commit is contained in:
parent
30508a4f74
commit
5372f7dd5a
1 changed files with 7 additions and 2 deletions
|
@ -887,8 +887,13 @@ (define-public squashfs-tools
|
|||
(modify-phases %standard-phases
|
||||
(replace 'configure
|
||||
(lambda _
|
||||
(chdir "squashfs-tools")
|
||||
#t)))))
|
||||
(chdir "squashfs-tools")))
|
||||
(add-after 'install 'install-documentation
|
||||
;; Install what very little usage documentation is provided.
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(doc (string-append out "/share/doc/" ,name)))
|
||||
(install-file "../USAGE" doc)))))))
|
||||
(inputs
|
||||
`(("lz4" ,lz4)
|
||||
("lzo" ,lzo)
|
||||
|
|
Loading…
Reference in a new issue