mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 10:30:43 +02:00
gnu: reprotest: Use G-expression.
* gnu/packages/diffoscope.scm (reprotest)[arguments]: Use G-expression. Change-Id: I35d4673e39a449169f5a66265e486d8e45268425
This commit is contained in:
parent
ed6ca2c413
commit
694cd39fa1
1 changed files with 14 additions and 14 deletions
|
@ -279,14 +279,14 @@ install.")
|
||||||
xxd))
|
xxd))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list #:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-doc
|
(add-after 'install 'install-doc
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let* ((mandir1 (string-append
|
(let* ((mandir1 (string-append
|
||||||
(assoc-ref outputs "out") "/share/man/man1"))
|
#$output "/share/man/man1"))
|
||||||
(docdir (string-append
|
(docdir (string-append
|
||||||
(assoc-ref outputs "out") "/share/doc/" ,name "-" ,version)))
|
#$output "/share/doc/" #$name "-" #$version)))
|
||||||
(invoke "make" "-C" "doc")
|
(invoke "make" "-C" "doc")
|
||||||
(mkdir-p mandir1)
|
(mkdir-p mandir1)
|
||||||
(install-file "doc/reprotest.1" mandir1)
|
(install-file "doc/reprotest.1" mandir1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue