diff options
author | Karl Berry <karl@freefriends.org> | 2018-03-12 23:04:35 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-03-12 23:04:35 +0000 |
commit | 73f075bc9e08ba903c8235a2cacb2e39b44d1954 (patch) | |
tree | 2bb329a05a3a4e4386b82cf87dd8ef8d0157686e /Master/tlpkg/libexec | |
parent | e93be321c454b06521746cf306363becf46dffef (diff) |
ctan-o-mat wrappers
git-svn-id: svn://tug.org/texlive/trunk@46938 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 396885cf660..29a6567bbcb 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -27,8 +27,8 @@ use Cwd; use vars qw($opt_ctan_dir); # programs used; must all be on the path -$MV = "mv"; -$CP = "cp -p"; +$MV = "mv -v"; +$CP = "cp -pv"; $RM = "rm -vf"; # just to get feedback from GNU rm on removals $MAKEINFO = "makeinfo"; $INSTALL = "install -D -m 664"; @@ -2315,6 +2315,7 @@ $standardsource = '(\.(bat|c|drv|dtx|fea|fdd|ins|sfd)' 'cmextra', 'NULL', 'concmath-fonts', 'NULL', 'crossword', $standardsource . '|AcrossLite', + 'ctan-o-mat', 'NULL', # process .bat 'cyrplain', 'NULL', # all in tex 'dccpaper', $standardsource . '|Makefile', 'docbytex', 'NULL', @@ -2806,6 +2807,7 @@ $standardttf = '\.ttf|\.TTC'; 'bib2gls' => '\.jar$', 'changes' => '\.bash$', 'cloze' => '\.lua$', + 'ctan-o-mat' => 'ctan-o-mat(|\.pl)$', 'epspdf' => '(epspdf(|\.help|boot|tk)|\.rb|makegray\.pro)$', 'latex2nemeth' => '\.jar$', 'latex-make' => '\.py$', @@ -2846,7 +2848,7 @@ $standardttf = '\.ttf|\.TTC'; 'cjk-gs-integrate' => '\.pl$', 'convbkmk' => '\.rb$', 'crossrefware' => '\.pl$', - 'ctan-o-mat' => '\.pl$', + 'ctan-o-mat' => 'ctan-o-mat$', 'ctanify' => '^ctanify$', 'ctanupload' => '\.pl$', 'de-macro' => 'de-macro', @@ -3738,7 +3740,8 @@ sub doscripts { &SYSTEM ("$MV $s.bat.noMiKTeX $scriptsdir"); # best to have wrapper also, maybe? - } elsif ($s eq "lua2dox_filter") { # package lua2dox + } elsif ($s eq "lua2dox_filter" # package lua2dox + || $s eq "ctan-o-mat") { # package ctan-o-mat # handwritten .bat &SYSTEM ("$MV $s.bat $platdir/"); next; # no wrapper |