- fix a mispell bug
[telepathy.git] / wscript
blob5d3548c49e8d4bd399049dc47f46d2fcb7c3607b
1 #!/usr/bin/env python
3 VERSION = '0.3.2'
4 APPNAME = 'telepathy-butterfly'
6 srcdir = '.'
7 blddir = '_build_'
9 import Scripting
11 Scripting.g_gz = 'gz'
12 Scripting.g_excludes.extend(['pymsn', 'telepathy', 'dist'])
15 def set_options(opt):
16 opt.tool_options('python')
17 opt.tool_options('gnu_dirs', 'tools')
19 def configure(conf):
20 conf.check_tool('python misc')
21 conf.check_tool('gnu_dirs', 'tools')
23 conf.check_python_version()
25 conf.define('VERSION', VERSION)
26 conf.define('PACKAGE', APPNAME)
28 def build(bld):
29 bld.add_subdirs('butterfly data')
30 install_files('LIBEXECDIR', '', 'telepathy-butterfly', chmod=0755)