File: wscript

package info (click to toggle)
jackd2 1.9.21~dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,748 kB
  • sloc: cpp: 50,925; ansic: 30,986; python: 12,573; sh: 228; makefile: 31
file content (10 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#! /usr/bin/python3
# encoding: utf-8


def build(bld):
    bld.exec_command('cd man ; sh fill_template {} {}'.format(
        bld.env['JACK_VERSION'],
        bld.env['BUILD_JACK_EXAMPLE_TOOLS'])
    )
    bld.install_files(bld.env['MANDIR'], bld.path.ant_glob('*.1'))