summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/grtimes/inlig
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/grtimes/inlig')
-rw-r--r--Master/texmf-dist/source/latex/grtimes/inlig27
1 files changed, 0 insertions, 27 deletions
diff --git a/Master/texmf-dist/source/latex/grtimes/inlig b/Master/texmf-dist/source/latex/grtimes/inlig
deleted file mode 100644
index f590840b97e..00000000000
--- a/Master/texmf-dist/source/latex/grtimes/inlig
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/perl
-#############################################################################
-#Program : inligs
-#Author : Apostolos Syropoulos
-#E-mail : apostolo@obelix.ee.duth.gr or apostolo@ocean1.ee.duth.gr
-#Functionality: Includes the cbligs.mf file in METAFONT files generated with
-# ttf2mf and the cb-tex.enc encoding.
-############################################################################
-die "Usage: inlig <METAFONT file>\n" if !(@ARGV);
-$file=$ARGV[0];
-$tmpf="temp.tmp";
-open(TEMP,">$tmpf")||die "Can't create temporal file!\n";
-open(MF,"$file")||die "can't open file $file!\n";
-while(<MF>)
-{
- if (/^end\.$/)
- {
- print TEMP "input cbligs.mf\nend.";
- }
- else
- {
- print TEMP;
- }
-}
-close;
-rename $tmpf, $file;
-__END__