X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/81016fe5cca26a3ff511010fa88ee9f569897a5e..0d7d8b502321cdd3d041b756c742a4805b009f8f:/tools/mkfontinfo diff --git a/tools/mkfontinfo b/tools/mkfontinfo index cdd508d..9533025 100755 --- a/tools/mkfontinfo +++ b/tools/mkfontinfo @@ -1,10 +1,9 @@ #!/usr/bin/env perl -use 5.010; -use strict; +use 5.014; use warnings; use utf8; -use open OUT => ':utf8', ':std'; +use open OUT => ':encoding(utf-8)', ':std'; use File::Basename 'basename'; use Data::Dump 'pp'; @@ -14,9 +13,13 @@ my @fontlist; my %cover; my $incsuffix = '.inc.pl'; -for my $fontfile (glob 'ttfsupport/*'.$incsuffix) { +for my $fontfile (glob 'data/font/*'.$incsuffix) { my ($fontid) = basename($fontfile, $incsuffix); - my ($fontmeta, @fontrange) = do $fontfile or next; + my ($fontmeta, @fontrange) = do "./$fontfile"; + if (!$fontmeta) { + warn "$fontfile: $!"; + next; + } $fontmeta->{file} = $fontid; my $year = substr $fontmeta->{date}, 0, 4; $fontmeta->{description} = join(' ', @@ -30,7 +33,9 @@ for my $fontfile (glob 'ttfsupport/*'.$incsuffix) { my %charlist; -my $chartables = do 'unicode-table.inc.pl' or warn $@ || $!; +$charlist{table}->{abc} = ['A'..'Z', 'a'..'z']; + +my $chartables = do './unicode-table.inc.pl' or warn $@ || $!; if ($chartables) { while (my ($tablegroup, $grouprow) = each %{$chartables}) { while (my ($tablename, $chars) = each %{$grouprow}) { @@ -64,7 +69,7 @@ eval { } or warn "Could not include count for html entities: $@"; eval { - my $agemap = do 'unicode-age.inc.pl' + my $agemap = do './data/unicode-age.inc.pl' or warn "Could not include unicode version data: $!"; use Unicode::UCD 'charinfo';