diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index d73c17ed8ec..77f882b8929 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1706,6 +1706,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'latex-base-dev' => '&POSTlatex_base_dev', 'latex-git-log' => 'change to use pod2man', 'latex2e-help-texinfo' => '&POSTlatex2e_help_texinfo', + 'latexindent' => '&POSTlatexindent', 'lhcyr' => '&POSTlhcyr', 'light-latex-make' => '&tl_man_to_pdf', 'lilyglyphs' => '&POSTlilyglyphs', @@ -4547,7 +4548,7 @@ sub doscripts { } elsif ($s eq "latexindent.pl") { # provided .exe (made with par::packer) - &SYSTEM ("$MV latexindent.exe $platdir/"); + &SYSTEM ("$MV bin/windows/latexindent.exe $platdir/"); next; # no wrapper } elsif ($s eq "lua2dox_filter") { # package lua2dox @@ -6986,6 +6987,11 @@ sub POSTlatex2e_help_texinfo { &SYSTEM ("$RM -rf spanish"); } +sub POSTlatexindent { + print "POST$package - remove binaries\n"; + &SYSTEM ("$RM -r bin"); +} + sub POSTlhcyr { print "POST$package - move to source, avoid dups\n"; &xchdir ("$DEST/tex/latex/$package"); |