gnu: rcs: Install rcsfreeze.

* gnu/packages/version-control.scm (rcs): Install rcsfreeze.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Foo Chuan Wei 2021-11-06 05:45:12 +00:00 committed by Ludovic Courtès
parent 7c4142628a
commit b737607c54
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -2049,6 +2049,14 @@ (define-public rcs
"1if5pa4iip2p70gljm54nggfdnsfjxa4cqz8fpj07lvsijary39s"))
(patches (search-patches "rcs-5.10.0-no-stdin.patch"))))
(build-system gnu-build-system)
(arguments `(#:phases
(modify-phases %standard-phases
(add-after 'install 'install-rcsfreeze
(lambda* (#:key outputs #:allow-other-keys)
(chmod "src/rcsfreeze" #o755)
(install-file
"src/rcsfreeze"
(string-append (assoc-ref outputs "out") "/bin")))))))
(native-inputs `(("ed" ,ed)))
(home-page "https://www.gnu.org/software/rcs/")
(synopsis "Per-file local revision control system")