diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 987fe79ed63..f36aa6ea9da 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1194,6 +1194,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'pxbase' => '&POSTpxbase', 'pxchfon' => '&POSTpxchfon', 'splitindex' => '&POST_do_man', + 'stix' => '&POSTstix', 'tap', => '&POSTtap', 'texdraw', => '&POSTtexdraw', 'tipa-de' => '&POST_rmsymlink', @@ -2608,7 +2609,7 @@ $standardclean = '\.head|\.tmp|\.dvi|\.log|\.out|\.aux|\.toc|\.lof|\.lot' 'piechartmp' => 'piechartmp.pdf', # no source 'ptptex' => '(overcite|cite|wrapfig).sty', # duplicated 'sapthesis' => '.*-ML.*\.pdf', # univ logos - 'stix' => '(STIX.*Documentation|stix)\.pdf', # no source + 'stix' => 'STIX.*Documentation\.pdf', # no source 'stubs' => 'stubs.pdf', # no source 'susy' => 'susy.pdf', # no source 'swimgraf' => 'swimgraf.pdf', # no source @@ -5591,6 +5592,14 @@ sub POSTpxchfon { &SYSTEM ("$MV $srcdir/*.sfd $sfddir/"); } +sub POSTstix { + print "POST$package - unspacify\n"; + &SYSTEM ('find . -name \*\ \* -print | rename "s/ /_/g"'); +# . '-exec mv "{}" ' +# . '"`echo \"{}\" | tr -d \ `" ' +# . '\;'); +} + sub POSTtap { print "POST$package - mv tapdoc dir\n"; &SYSTEM ("$MV tapdoc/* ."); |