gnu: tig: Install man pages.
* gnu/packages/version-control.scm (tig)[native-inputs]: Add asciidoc, xmlto.
This commit is contained in:
parent
d0e11e8b52
commit
2203e4c279
|
@ -1060,11 +1060,19 @@ from Subversion to any supported Distributed Version Control System (DVCS).")
|
||||||
(base32
|
(base32
|
||||||
"0k3m894vfkgkj7xbr0j6ph91351dl6id5f0hk2ksjp5lmg9i6llg"))))
|
"0k3m894vfkgkj7xbr0j6ph91351dl6id5f0hk2ksjp5lmg9i6llg"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("asciidoc" ,asciidoc)
|
||||||
|
("xmlto" ,xmlto)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("ncurses" ,ncurses)
|
`(("ncurses" ,ncurses)
|
||||||
("readline" ,readline)))
|
("readline" ,readline)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ; tests require access to /dev/tty
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'install 'install-doc
|
||||||
|
(lambda _
|
||||||
|
(zero? (system* "make" "install-doc")))))
|
||||||
|
#:tests? #f)) ; tests require access to /dev/tty
|
||||||
;;`(#:test-target "test"))
|
;;`(#:test-target "test"))
|
||||||
(home-page "http://jonas.nitro.dk/tig/")
|
(home-page "http://jonas.nitro.dk/tig/")
|
||||||
(synopsis "Ncurses-based text user interface for Git")
|
(synopsis "Ncurses-based text user interface for Git")
|
||||||
|
|
Loading…
Reference in New Issue