File: wscript

package info (click to toggle)
showq 0.4.1%2Bgit20161215~dfsg0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,340 kB
  • sloc: python: 13,081; cpp: 5,067; makefile: 37
file content (21 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /usr/bin/env python
# encoding: utf-8

APPNAME='showq'
VERSION='0.5.0'
top = '.'
out = 'build'

def options(opt):
    opt.load('compiler_cxx')

def configure(conf):
    conf.recurse('src ui')
    conf.define('GETTEXT_PACKAGE', 'showq')
    conf.define('PROGRAMNAME_LOCALEDIR', conf.options.prefix + 'share/showq')
    conf.define('UI_DIR', conf.options.prefix + 'share/showq/ui/')
    conf.define('VERSIONSTRING', VERSION)
    conf.write_config_header('config.h')

def build(bld):
    bld.recurse('src ui')