summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/generic/hyph-utf8/lib/tex/hyphen/path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/generic/hyph-utf8/lib/tex/hyphen/path.rb')
-rw-r--r--Master/texmf-dist/source/generic/hyph-utf8/lib/tex/hyphen/path.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/generic/hyph-utf8/lib/tex/hyphen/path.rb b/Master/texmf-dist/source/generic/hyph-utf8/lib/tex/hyphen/path.rb
new file mode 100644
index 00000000000..fda422b11a8
--- /dev/null
+++ b/Master/texmf-dist/source/generic/hyph-utf8/lib/tex/hyphen/path.rb
@@ -0,0 +1,25 @@
+module TeX
+ module Hyphen
+ module PATH
+ ROOT = File.expand_path('../../../../../../../..', __FILE__)
+
+ TeXROOT = File.join(ROOT, 'hyph-utf8')
+ TeX_GENERIC = File.join(TeXROOT, 'tex', 'generic')
+ PAT = File.join(TeX_GENERIC, 'hyph-utf8', 'patterns')
+ TXT = File.join(PAT, 'txt')
+ TEX = File.join(PAT, 'tex')
+ PTEX = File.join(PAT, 'ptex')
+ QUOTE = File.join(PAT, 'quote')
+ LOADER = File.join(TeX_GENERIC, 'hyph-utf8', 'loadhyph')
+
+ SUPPORT = File.join(TeXROOT, '%s', 'generic', 'hyph-utf8', 'languages', '*')
+
+ HYPHU8 = File.join('tex', 'generic', 'hyph-utf8')
+
+ TL = File.join(ROOT, 'TL')
+ LANGUAGE_DAT = File.join(PATH::TL, 'texmf-dist', 'tex', 'generic', 'config')
+ # hyphen-foo.tlpsrc for TeX Live
+ TLPSRC = File.join(PATH::TL, 'tlpkg', 'tlpsrc')
+ end
+ end
+end