summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/pax
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-09-20 23:48:30 +0000
committerKarl Berry <karl@freefriends.org>2008-09-20 23:48:30 +0000
commit5dc173537c1bc9fd033d1c6b3498e847d3a6d38a (patch)
tree896be0734f25575e9ac83417976c9d268a64b981 /Master/texmf-dist/scripts/pax
parent4b95f16c338118ec28786de9563f1361d9b42989 (diff)
pax aka pdfannotextractor
git-svn-id: svn://tug.org/texlive/trunk@10666 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/pax')
-rw-r--r--Master/texmf-dist/scripts/pax/pax.jarbin0 -> 11487 bytes
-rwxr-xr-xMaster/texmf-dist/scripts/pax/pdfannotextractor.texlua43
2 files changed, 43 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/pax/pax.jar b/Master/texmf-dist/scripts/pax/pax.jar
new file mode 100644
index 00000000000..86366738add
--- /dev/null
+++ b/Master/texmf-dist/scripts/pax/pax.jar
Binary files differ
diff --git a/Master/texmf-dist/scripts/pax/pdfannotextractor.texlua b/Master/texmf-dist/scripts/pax/pdfannotextractor.texlua
new file mode 100755
index 00000000000..3fa9f8aa314
--- /dev/null
+++ b/Master/texmf-dist/scripts/pax/pdfannotextractor.texlua
@@ -0,0 +1,43 @@
+#!/usr/bin/env texlua
+--*-Lua-*-
+-- $Id: ppower4.texlua 6969 2008-03-14 22:17:00Z reinhardk $
+
+-- Copyright (C) 2008 Reinhard Kotucha.
+-- You may freely use, modify and/or distribute this file.
+
+-- Launch ppower4
+
+function fixwin(args_unix)
+ if os.type == 'windows' then
+ local args_win={} -- new table
+ args_win[0]=args_unix[1]
+ for i=1, #args_unix do
+ args_win[i]='"'..args_unix[i]..'"'
+ end
+ return args_win
+ else
+ return args_unix
+ end
+end
+
+kpse.set_program_name('pdfannotextractor.texlua', 'pdfannotextractor')
+
+jarfile=kpse.find_file(pax.jar', 'texmfscripts')
+
+command={'java', '-jar', jarfile}
+
+for i=1, #arg do
+ command[#command+1]=arg[i]
+end
+
+command=fixwin(command)
+
+--[[ prepend an additional hyphen to activate this code
+for i=0, #command do
+ print (command[i])
+end
+os.exit(ret)
+--]]
+
+ret=os.spawn(command)
+os.exit(ret)