mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: ncdu2: Delete pregenerated man page from source.
* gnu/packages/ncdu.scm (ncdu2)[source]: Add a snippet. [arguments]: Adjust 'build-manpage phase accordingly.
This commit is contained in:
parent
a4e98faa1e
commit
7951892d39
1 changed files with 6 additions and 2 deletions
|
@ -66,7 +66,12 @@ (define-public ncdu-2
|
|||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0hfimrr7z9zrfkiyj09i8nh4a1rjn7d00y9xzpc7mkyqpkvghjjy"))))
|
||||
"0hfimrr7z9zrfkiyj09i8nh4a1rjn7d00y9xzpc7mkyqpkvghjjy"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
#~(begin
|
||||
;; Delete a pregenerated man page. We'll build it ourselves.
|
||||
(delete-file "ncdu.1")))))
|
||||
(arguments
|
||||
(list
|
||||
#:make-flags
|
||||
|
@ -83,7 +88,6 @@ (define-public ncdu-2
|
|||
(mkdtemp "/tmp/zig-cache-XXXXXX"))))
|
||||
(add-after 'build 'build-manpage
|
||||
(lambda _
|
||||
(delete-file "ncdu.1")
|
||||
(invoke "make" "doc")))
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue