diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index fca73cf1fdb..73c57ef918e 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -552,6 +552,7 @@ chdir $startdir || die "chdir($startdir) failed: $!"; # back to raw 'lithuanian' => '&POSTlithuanian', 'pgf' => '&POSTpgf', 'pst-cox' => '&POSTpstcox', + 'splitindex' => '&POSTsplitindex', 'xecjk' => '&POSTxecjk', 'xecyr' => '&POSTxecyr', 'xetex-pstricks' => '&POSTxetex_pstricks', @@ -3637,6 +3638,15 @@ sub POSTpgf &SYSTEM ("cd $DEST && mkdir tex && mv context generic latex plain tex"); } +# has to be post instead of specialman because we use the tds.zip. +sub POSTsplitindex +{ + print "POST$package - mv man page\n"; + my $mydest = "$TOPDEST/texmf/doc/man/man1/"; + &xmkdir ($mydest); + &SYSTEM ("$MV doc/latex/splitindex/$package.1 $mydest"); +} + sub POSTpstcox { print "POST$package - mv latex .sty, doc Gallery\n"; |