summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-02-27 20:36:24 +0000
committerKarl Berry <karl@freefriends.org>2023-02-27 20:36:24 +0000
commited88533028118834c653da99bb9f733d02e7bbf1 (patch)
treed2c2ba8424e447810447c9b4f24e12782241a78a /Master/tlpkg
parent32d2711aa125900e887cfa1a107e0d5d0f978ee8 (diff)
unicode-alphabets (27feb23)
git-svn-id: svn://tug.org/texlive/trunk@66225 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds6
1 files changed, 4 insertions, 2 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index cd2144f767e..62b462af0a1 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -1798,6 +1798,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`);
'tlcockpit' => '&POST_do_man',
'tlc3-examples' => '&POSTtlc3_examples',
'tudscr' => '&POSTtudscr',
+ 'unicode-alphabets' => '&POST_onelevel',
'unimath-plain-xetex' => '&POSTunimath_plain_xetex',
'uplatex' => '&POST_preserve_man',
'velthuis' => '&POSTvelthuis',
@@ -7583,13 +7584,13 @@ sub POSTzhmetrics {
#
sub POST_onelevel {
print "POST_onelevel ($package) - handle doc/source/tex directories\n";
- for my $dir ("opentype", "source", "tex", "lualatex", "luatex") {
+ for my $dir ("opentype", "source", "tex", "latex", "lualatex", "luatex") {
next unless -d $dir;
# theoretically we should use $whichformat, $sourceformat,
# but in practice they are always the same.
my $format = $whichdocformat;
my $destdir = $dir;
- if ($dir =~ /lua(la)?tex/) {
+ if ($dir =~ /(lua)?(la)?tex/) {
$destdir = "tex/$which";
} elsif ($dir =~ /opentype/) {
$destdir = "fonts";
@@ -7599,6 +7600,7 @@ sub POST_onelevel {
}
# move files in doc/ up to cwd. If there are clashes, will error out.
&xsystem ("$MV doc/* .") if -d "doc";
+ &xsystem ("$MV docs/* .") if -d "docs";
}
sub POST_otherformat {