| "This tool is intended to be used from meson" |
| import os, os.path, sys, subprocess, shutil |
| ragel = os.getenv ('RAGEL', shutil.which ('ragel')) |
| sys.exit ('You have to install ragel if you are going to develop HarfBuzz itself') |
| CURRENT_SOURCE_DIR = sys.argv[2] |
| outdir = os.path.dirname (OUTPUT) |
| shutil.copy (INPUT, outdir) |
| rl = os.path.basename (INPUT) |
| hh = rl.replace ('.rl', '.hh') |
| subprocess.Popen (ragel.split() + ['-e', '-F1', '-o', hh, rl], cwd=outdir).wait () |
| shutil.copyfile (os.path.join (outdir, hh), os.path.join (CURRENT_SOURCE_DIR, hh)) |