diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 813da456324..57d98c3871e 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1212,6 +1212,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'amsrefs' => '&POSTamsrefs', 'amstex' => '&POSTamstex', 'apalike' => '&POSTapalike', + 'asapsym' => '&POSTasapsym', 'biber' => '&POSTbiber', 'biblatex' => '&POSTbiblatex', 'bibtex' => '&POSTbibtex', @@ -2509,6 +2510,7 @@ $standardmf='[0-9]\.mf'; %specialfoundry = ( + 'asapsym' => 'omnibus-type', 'berenisadf' => 'arkandis', 'charter' => 'bitstrea', 'fc' => 'jknappen', @@ -5193,6 +5195,18 @@ sub POSTapalike { &SYSTEM ("$MV $src $dstdir/"); } +sub POSTasapsym { + print "POST$package - move TeX files to specific subdirs\n"; + # + my $plainfile = "$DEST/tex/latex/$package/$package.code.tex"; + my $plaindir = "$DEST/tex/plain/$package"; + &mv_with_mkdir ($plainfile, $plaindir); + # + my $genericfile = "$DEST/doc/$whichdocformat/$package/$package-generic.tex"; + my $genericdir = "$DEST/tex/generic/$package"; + &mv_with_mkdir ($genericfile, $genericdir); +} + sub POSTbiber { print "POST$package - unpack and install binaries\n"; # we've started with everything under source/. |