diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:01:39 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:20 +0200 |
commit | 6ee013efff588d829f1bcf5de576af219146dcc9 (patch) | |
tree | 0240b8c604384a58d1ea341fa3475d5ffd8b8fe9 /gnu/packages | |
parent | c60b6c817fe8cdb1a8cc965ee8ddaa26887b6a7d (diff) | |
download | guix-6ee013efff588d829f1bcf5de576af219146dcc9.tar.gz |
gnu: Add texlive-splitindex.
* gnu/packages/tex.scm (texlive-splitindex): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5e6e20e78e..3842dad3e6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96220,6 +96220,37 @@ sparklines package uses PGF.") mode.") (license license:knuth))) +(define-public texlive-splitindex + (package + (name "texlive-splitindex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/splitindex/" + "doc/man/man1/splitindex.1" + "doc/man/man1/splitindex.man1.pdf" + "scripts/splitindex/" + "source/latex/splitindex/" + "tex/generic/splitindex/" + "tex/latex/splitindex/") + (base32 + "14c7x81zqvwwdd54jvjkyr34inhfppidcask6wx9w23xsy8mr8y8"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:link-scripts #~(list "splitindex.pl"))) + (inputs (list perl)) + (home-page "https://ctan.org/pkg/splitindex") + (synopsis "Unlimited number of indexes") + (description + "SplitIndex consists of a LaTeX package, @code{splitidx}, and a small program, +@code{splitindex}. The package may be used to produce one index or several +indexes. Without @command{splitindex}, the number of indexes is limited by +the number of TeX's output streams. But using the program you may use even +more than 16 indexes: @command{splitidx} outputs only a single file and the +program splits that file into several raw index files and calls your favorite +index processor for each of the files.") + (license license:lppl))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |