summaryrefslogtreecommitdiff
path: root/Master/bin/win32/generate-language.texlua
blob: 0434d9f245d3ece15299d6f776ca6f5f969e556a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env texlua
--*-Lua-*-
-- $Id: generate-language.texlua 6485 2008-02-01 20:15:06Z reinhardk $

-- Copyright (C) 2007 2008 Reinhard Kotucha, Norbert Preining
-- You may freely use, modify and/or distribute this file.

-- Wrapper for Perl scripts.


if string.find(arg[0], "/") then -- UNIX path
   filename=select(1, string.gsub(arg[0], ".*/", ""))
elseif string.find(arg[0], "\\") then -- Windows path
   filename=select(1, string.gsub(arg[0], ".*\\", ""))
else -- no path
   filename=arg[0]
end

basename=select(1, string.gsub(filename, "\.texlua$", ""))

basename="generate-language"

kpse.set_program_name(filename)

TEXDIR=kpse.var_value("SELFAUTOPARENT")

-- if we are on win32 we have to use the shipped perl
perlbin="perl"
if (os.type == "windows") then
  os.setenv("PERL5LIB", TEXDIR.."/tlpkg/tlperl/lib")
  perlbin=TEXDIR.."/tlpkg/tlperl/bin/perl.exe"
end

script=kpse.find_file(basename..".pl", "texmfscripts")

if (not(script)) then
  print ("Cannot find "..basename..".pl".." using kpse, exiting!")
  os.exit(1)
end

command={'"'..perlbin..'"', '"'..script..'"'}
command[0] = perlbin

for i=1, #arg do
    command[#command+1]=arg[i]
end

ret=os.spawn(command)
os.exit(ret)