mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add texlive-tex-texinfo.
* gnu/packages/tex.scm (texlive-tex-texinfo): New variable.
This commit is contained in:
parent
9f86ef85cf
commit
a0aa6b59dd
1 changed files with 35 additions and 0 deletions
|
@ -1544,6 +1544,41 @@ (define-public texlive-latex-hyperref
|
||||||
@code{nameref} packages, which make use of the facilities of @code{hyperref}.")
|
@code{nameref} packages, which make use of the facilities of @code{hyperref}.")
|
||||||
(license license:lppl1.3+)))
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
|
(define-public texlive-tex-texinfo
|
||||||
|
(package
|
||||||
|
(name "texlive-tex-texinfo")
|
||||||
|
(version (number->string %texlive-revision))
|
||||||
|
(source (origin
|
||||||
|
(method svn-fetch)
|
||||||
|
(uri (svn-reference
|
||||||
|
(url (string-append "svn://www.tug.org/texlive/tags/"
|
||||||
|
%texlive-tag "/Master/texmf-dist/"
|
||||||
|
"/tex/texinfo"))
|
||||||
|
(revision %texlive-revision)))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"09zj2w3lx0y6i2syfjjgizahf86z301dw8p37ln6syfhqhzqdz46"))))
|
||||||
|
(build-system trivial-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:modules ((guix build utils))
|
||||||
|
#:builder
|
||||||
|
(begin
|
||||||
|
(use-modules (guix build utils))
|
||||||
|
(let ((target (string-append (assoc-ref %outputs "out")
|
||||||
|
"/share/texmf-dist/tex/texinfo")))
|
||||||
|
(mkdir-p target)
|
||||||
|
(copy-recursively (assoc-ref %build-inputs "source") target)
|
||||||
|
#t))))
|
||||||
|
(home-page "http://www.ctan.org/pkg/texinfo")
|
||||||
|
(synopsis "TeX macros to handle Texinfo files")
|
||||||
|
(description
|
||||||
|
"Texinfo is the preferred format for documentation in the GNU project;
|
||||||
|
the format may be used to produce online or printed output from a single
|
||||||
|
source. The Texinfo macros may be used to produce printable output using TeX;
|
||||||
|
other programs in the distribution offer online interactive use (with
|
||||||
|
hypertext linkages in some cases).")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define texlive-texmf
|
(define texlive-texmf
|
||||||
(package
|
(package
|
||||||
(name "texlive-texmf")
|
(name "texlive-texmf")
|
||||||
|
|
Loading…
Reference in a new issue