gnu: roffit: Adjust install phase.

* gnu/packages/groff.scm (roffit)[arguments]: Remove make-flags. Remove
custom 'pre-install phase. Replace 'install phase to also install
manpage.
This commit is contained in:
Efraim Flashner 2020-09-15 09:41:37 +03:00
parent 8aea855ac1
commit af4c633bbb
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -191,17 +191,15 @@ (define-public roffit
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:test-target "test" `(#:test-target "test"
#:make-flags
(list (string-append "INSTALLDIR="
(assoc-ref %outputs "out") "/bin"))
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'configure) (delete 'configure)
(add-before 'install 'pre-install (replace 'install
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(mkdir-p (string-append (assoc-ref outputs "out") (let ((out (assoc-ref outputs "out")))
"/bin")) (install-file "roffit" (string-append out "/bin"))
#t)) (install-file "roffit.1" (string-append out "/share/man/man1"))
#t)))
(add-after 'install 'wrap-program (add-after 'install 'wrap-program
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out"))) (let ((out (assoc-ref outputs "out")))