gnu: rcs: Install man page for rcsfreeze.
* gnu/packages/version-control.scm (rcs)[arguments]: Install man page for rcsfreeze. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
e60f803b90
commit
442b2d9d7d
1 changed files with 6 additions and 4 deletions
|
@ -2032,10 +2032,12 @@ projects, from individuals to large-scale enterprise operations.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-rcsfreeze
|
(add-after 'install 'install-rcsfreeze
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(chmod "src/rcsfreeze" #o755)
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(install-file
|
(bin (string-append out "/bin"))
|
||||||
"src/rcsfreeze"
|
(man1 (string-append out "/share/man/man1")))
|
||||||
(string-append (assoc-ref outputs "out") "/bin")))))))
|
(chmod "src/rcsfreeze" #o755)
|
||||||
|
(install-file "src/rcsfreeze" bin)
|
||||||
|
(install-file "man/rcsfreeze.1" man1)))))))
|
||||||
(native-inputs (list ed))
|
(native-inputs (list ed))
|
||||||
(home-page "https://www.gnu.org/software/rcs/")
|
(home-page "https://www.gnu.org/software/rcs/")
|
||||||
(synopsis "Per-file local revision control system")
|
(synopsis "Per-file local revision control system")
|
||||||
|
|
Reference in a new issue