File: wscript_build

package info (click to toggle)
glmark2 2023.01%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,380 kB
  • sloc: cpp: 20,680; python: 13,052; ansic: 8,595; java: 1,246; xml: 383; makefile: 42; sh: 39
file content (12 lines) | stat: -rw-r--r-- 425 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
for name in bld.env.keys():
    if name.startswith('FLAVOR_') and bld.env[name]:
        target = bld.env[name]
        bld(
            features = 'subst',
            source = 'glmark2.1.in',
            target = bld.path.find_or_declare('%s.1' % target),
            APPNAME = 'GLMARK2',
            appname = target,
            appversion = bld.env.GLMARK2_VERSION,
            install_path = '${MANDIR}/man1'
        )