wscript 314 B

1234567891011121314151617
  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. # Thomas Nagy, 2010 (ita)
  4. """
  5. help welcome to improve this demo folder
  6. """
  7. APPNAME = 'app'
  8. def configure(conf):
  9. conf.load('gnu_dirs intltool')
  10. def build(bld):
  11. bld.recurse('data')
  12. bld(features='intltool_po', appname=APPNAME, podir='po', install_path="${LOCALEDIR}")