summaryrefslogtreecommitdiff
path: root/debian/mkbinfmt.py
diff options
context:
space:
mode:
Diffstat (limited to 'debian/mkbinfmt.py')
-rw-r--r--debian/mkbinfmt.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/mkbinfmt.py b/debian/mkbinfmt.py
new file mode 100644
index 0000000..0cf45e7
--- /dev/null
+++ b/debian/mkbinfmt.py
@@ -0,0 +1,18 @@
+# mkbinfmt.py
+import imp, sys, os.path
+
+magic = "".join(["\\x%.2x" % c for c in imp.get_magic()])
+
+name = sys.argv[1]
+
+binfmt = '''\
+package %s
+interpreter /usr/bin/%s
+magic %s\
+''' % (name, name, magic)
+
+#filename = '/usr/share/binfmts/' + name
+#open(filename,'w+').write(binfmt)
+
+sys.stdout.write(binfmt)
+sys.stdout.write('\n')