mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 18:07:12 +01:00
30 lines
515 B
Python
30 lines
515 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy, 2010 (ita)
|
|
|
|
top = '.'
|
|
out = '.'
|
|
|
|
def configure(conf):
|
|
conf.find_program('convert', var='CONVERT')
|
|
conf.find_program('dia', var='DIA')
|
|
|
|
def build(bld):
|
|
|
|
for x in bld.path.ant_glob('*.svg'):
|
|
bld(
|
|
rule='${CONVERT} -density 600 ${SRC} ${TGT}',
|
|
source=x,
|
|
target=x.change_ext('.png'),
|
|
)
|
|
|
|
for x in bld.path.ant_glob('*.dia'):
|
|
bld(
|
|
rule='${DIA} -t png ${SRC} -e ${TGT}',
|
|
source=x,
|
|
target=x.change_ext('.png'),
|
|
)
|
|
|
|
def options(opt):
|
|
pass
|