diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 12:57:25 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 12:57:25 +0200 |
commit | 052867300693c11df9dda57d341ddf3036ebb902 (patch) | |
tree | 3b08d312fdb4613e385e6659c58918c9d516ffa0 | |
parent | e43f5080f42f275d2e976910219118c41ea9f034 (diff) |
gnu: Add texlive-pbibtex-manual.
* gnu/packages/tex.scm (texlive-pbibtex-manual): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 118a509e03..eec23eb82d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -19338,6 +19338,25 @@ styles (@file{.bst}), for pBibTeX, which is a Japanese extended version of BibTeX contained in TeX Live.") (license license:bsd-3))) +(define-public texlive-pbibtex-manual + (package + (name "texlive-pbibtex-manual") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pbibtex-manual/") + (base32 + "030rhhb4xcijvjc0x1ylyk6xz5mn90wrlp5ss4yr6qlpzmq21b50"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pbibtex-manual") + (synopsis "Documentation files for (u)pBibTeX") + (description + "The bundle contains documentation files for Japanese pBibTeX and +upBibTeX. For historical reasons, this also contains old documentation files +for JBibTeX.") + (license license:bsd-3))) + (define-public texlive-penrose (package (name "texlive-penrose") |