mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-11 09:54:19 +00:00
19 lines
613 B
Python
19 lines
613 B
Python
# vi: syntax=python:et:ts=4
|
|
# Shamelessly stolen from scons wiki
|
|
# http://www.scons.org/wiki/ReplacementBuilder
|
|
|
|
from string import Template
|
|
|
|
def replace_action(target, source, env):
|
|
open(str(target[0]), 'w').write(Template(open(str(source[0]), 'r').read()).safe_substitute(env))
|
|
|
|
def replace_string(target, source, env):
|
|
return "building '%s' from '%s'" % (str(target[0]), str(source[0]))
|
|
|
|
def generate(env, **kw):
|
|
action = env.Action(replace_action, replace_string)
|
|
env['BUILDERS']['ScanReplace'] = env.Builder(action=action, src_suffix='.in', single_source=True)
|
|
|
|
def exists(env):
|
|
return True
|