source: wscript @ bf6df1c

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since bf6df1c was fee0094, checked in by Paul Brossier <piem@piem.org>, 6 years ago

wscript: remove trailing spaces

  • Property mode set to 100644
File size: 22.6 KB
Line 
1#! /usr/bin/python
2#
3# usage:
4#   $ python waf --help
5#
6# example:
7#   $ ./waf distclean configure build
8#
9# Note: aubio uses the waf build system, which relies on Python. Provided you
10# have Python installed, you do *not* need to install anything to build aubio.
11# For more info about waf, see http://code.google.com/p/waf/ .
12
13import sys
14
15APPNAME = 'aubio'
16
17from this_version import *
18
19VERSION = get_aubio_version()
20LIB_VERSION = get_libaubio_version()
21
22top = '.'
23out = 'build'
24
25def add_option_enable_disable(ctx, name, default = None,
26        help_str = None, help_disable_str = None):
27    if help_str == None:
28        help_str = 'enable ' + name + ' support'
29    if help_disable_str == None:
30        help_disable_str = 'do not ' + help_str
31    ctx.add_option('--enable-' + name, action = 'store_true',
32            default = default,
33            dest = 'enable_' + name.replace('-','_'),
34            help = help_str)
35    ctx.add_option('--disable-' + name, action = 'store_false',
36            #default = default,
37            dest = 'enable_' + name.replace('-','_'),
38            help = help_disable_str )
39
40def options(ctx):
41    ctx.add_option('--build-type', action = 'store',
42            default = "release",
43            choices = ('debug', 'release'),
44            dest = 'build_type',
45            help = 'whether to compile with (--build-type=release) or without (--build-type=debug) '\
46              ' compiler opimizations [default: release]')
47    add_option_enable_disable(ctx, 'fftw3f', default = False,
48            help_str = 'compile with fftw3f instead of ooura (recommended)',
49            help_disable_str = 'do not compile with fftw3f')
50    add_option_enable_disable(ctx, 'fftw3', default = False,
51            help_str = 'compile with fftw3 instead of ooura',
52            help_disable_str = 'do not compile with fftw3')
53    add_option_enable_disable(ctx, 'complex', default = False,
54            help_str ='compile with C99 complex',
55            help_disable_str = 'do not use C99 complex (default)' )
56    add_option_enable_disable(ctx, 'jack', default = None,
57            help_str = 'compile with jack (auto)',
58            help_disable_str = 'disable jack support')
59    add_option_enable_disable(ctx, 'sndfile', default = None,
60            help_str = 'compile with sndfile (auto)',
61            help_disable_str = 'disable sndfile')
62    add_option_enable_disable(ctx, 'avcodec', default = None,
63            help_str = 'compile with libavcodec (auto)',
64            help_disable_str = 'disable libavcodec')
65    add_option_enable_disable(ctx, 'samplerate', default = None,
66            help_str = 'compile with samplerate (auto)',
67            help_disable_str = 'disable samplerate')
68    add_option_enable_disable(ctx, 'memcpy', default = True,
69            help_str = 'use memcpy hacks (default)',
70            help_disable_str = 'do not use memcpy hacks')
71    add_option_enable_disable(ctx, 'double', default = False,
72            help_str = 'compile in double precision mode',
73            help_disable_str = 'compile in single precision mode (default)')
74    add_option_enable_disable(ctx, 'fat', default = False,
75            help_str = 'build fat binaries (darwin only)',
76            help_disable_str = 'do not build fat binaries (default)')
77    add_option_enable_disable(ctx, 'accelerate', default = None,
78            help_str = 'use Accelerate framework (darwin only) (auto)',
79            help_disable_str = 'do not use Accelerate framework')
80    add_option_enable_disable(ctx, 'apple-audio', default = None,
81            help_str = 'use CoreFoundation (darwin only) (auto)',
82            help_disable_str = 'do not use CoreFoundation framework')
83    add_option_enable_disable(ctx, 'atlas', default = False,
84            help_str = 'use Atlas library (no)',
85            help_disable_str = 'do not use Atlas library')
86    add_option_enable_disable(ctx, 'wavread', default = True,
87            help_str = 'compile with source_wavread (default)',
88            help_disable_str = 'do not compile source_wavread')
89    add_option_enable_disable(ctx, 'wavwrite', default = True,
90            help_str = 'compile with source_wavwrite (default)',
91            help_disable_str = 'do not compile source_wavwrite')
92
93    add_option_enable_disable(ctx, 'docs', default = None,
94            help_str = 'build documentation (auto)',
95            help_disable_str = 'do not build documentation')
96
97    ctx.add_option('--with-target-platform', type='string',
98            help='set target platform for cross-compilation', dest='target_platform')
99
100    ctx.load('compiler_c')
101    ctx.load('waf_unit_test')
102    ctx.load('gnu_dirs')
103
104def configure(ctx):
105    target_platform = sys.platform
106    if ctx.options.target_platform:
107        target_platform = ctx.options.target_platform
108
109    from waflib import Options
110
111    if target_platform=='emscripten':
112        ctx.load('c_emscripten')
113    else:
114        ctx.load('compiler_c')
115
116    ctx.load('waf_unit_test')
117    ctx.load('gnu_dirs')
118
119    # check for common headers
120    ctx.check(header_name='stdlib.h')
121    ctx.check(header_name='stdio.h')
122    ctx.check(header_name='math.h')
123    ctx.check(header_name='string.h')
124    ctx.check(header_name='limits.h')
125    ctx.check(header_name='stdarg.h')
126    ctx.check(header_name='getopt.h', mandatory = False)
127    ctx.check(header_name='unistd.h', mandatory = False)
128
129    ctx.env['DEST_OS'] = target_platform
130
131    if ctx.options.build_type == "debug":
132        ctx.define('DEBUG', 1)
133    else:
134        ctx.define('NDEBUG', 1)
135
136    if ctx.env.CC_NAME != 'msvc':
137        if ctx.options.build_type == "debug":
138            # no optimization in debug mode
139            ctx.env.prepend_value('CFLAGS', ['-O0'])
140        else:
141            if target_platform == 'emscripten':
142                # -Oz for small js file generation
143                ctx.env.prepend_value('CFLAGS', ['-Oz'])
144            else:
145                # default to -O2 in release mode
146                ctx.env.prepend_value('CFLAGS', ['-O2'])
147        # enable debug symbols and configure warnings
148        ctx.env.prepend_value('CFLAGS', ['-g', '-Wall', '-Wextra'])
149    else:
150        # enable debug symbols
151        ctx.env.CFLAGS += ['/Z7', '/FS']
152        ctx.env.LINKFLAGS += ['/DEBUG', '/INCREMENTAL:NO']
153        # configure warnings
154        ctx.env.CFLAGS += ['/W4', '/D_CRT_SECURE_NO_WARNINGS']
155        # set optimization level and runtime libs
156        if (ctx.options.build_type == "release"):
157            ctx.env.CFLAGS += ['/Ox']
158            ctx.env.CFLAGS += ['/MD']
159        else:
160            assert(ctx.options.build_type == "debug")
161            ctx.env.CFLAGS += ['/MDd']
162
163    ctx.check_cc(lib='m', uselib_store='M', mandatory=False)
164
165    if target_platform not in ['win32', 'win64']:
166        ctx.env.CFLAGS += ['-fPIC']
167    else:
168        ctx.define('HAVE_WIN_HACKS', 1)
169        ctx.env['cshlib_PATTERN'] = 'lib%s.dll'
170
171    if target_platform == 'darwin' and ctx.options.enable_fat:
172        ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
173        ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
174        MINSDKVER="10.4"
175        ctx.env.CFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ]
176        ctx.env.LINKFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ]
177
178    if target_platform in [ 'darwin', 'ios', 'iosimulator']:
179        if (ctx.options.enable_apple_audio != False):
180            ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
181            ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1)
182            ctx.define('HAVE_SINK_APPLE_AUDIO', 1)
183            ctx.msg('Checking for AudioToolbox.framework', 'yes')
184        else:
185            ctx.msg('Checking for AudioToolbox.framework', 'no (disabled)', color = 'YELLOW')
186        if (ctx.options.enable_accelerate != False):
187            ctx.define('HAVE_ACCELERATE', 1)
188            ctx.env.FRAMEWORK += ['Accelerate']
189            ctx.msg('Checking for Accelerate framework', 'yes')
190        else:
191            ctx.msg('Checking for Accelerate framework', 'no (disabled)', color = 'YELLOW')
192
193    if target_platform in [ 'ios', 'iosimulator' ]:
194        MINSDKVER="6.1"
195        ctx.env.CFLAGS += ['-std=c99']
196        if (ctx.options.enable_apple_audio != False):
197            ctx.define('HAVE_AUDIO_UNIT', 1)
198            #ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
199        if target_platform == 'ios':
200            DEVROOT = "/Applications/Xcode.app/Contents"
201            DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer"
202            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS.sdk" % locals()
203            ctx.env.CFLAGS += [ '-fembed-bitcode' ]
204            ctx.env.CFLAGS += [ '-arch', 'arm64' ]
205            ctx.env.CFLAGS += [ '-arch', 'armv7' ]
206            ctx.env.CFLAGS += [ '-arch', 'armv7s' ]
207            ctx.env.LINKFLAGS += [ '-arch', 'arm64' ]
208            ctx.env.LINKFLAGS += ['-arch', 'armv7']
209            ctx.env.LINKFLAGS += ['-arch', 'armv7s']
210            ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
211            ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
212        else:
213            DEVROOT = "/Applications/Xcode.app/Contents"
214            DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer"
215            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals()
216            ctx.env.CFLAGS += [ '-arch', 'i386' ]
217            ctx.env.CFLAGS += [ '-arch', 'x86_64' ]
218            ctx.env.LINKFLAGS += ['-arch', 'i386']
219            ctx.env.LINKFLAGS += ['-arch', 'x86_64']
220            ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
221            ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
222        ctx.env.CFLAGS += [ '-isysroot' , SDKROOT]
223        ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT]
224
225    if target_platform == 'emscripten':
226        if ctx.options.build_type == "debug":
227            ctx.env.cshlib_PATTERN = '%s.js'
228            ctx.env.LINKFLAGS += ['-s','ASSERTIONS=2']
229            ctx.env.LINKFLAGS += ['-s','SAFE_HEAP=1']
230            ctx.env.LINKFLAGS += ['-s','ALIASING_FUNCTION_POINTERS=0']
231            ctx.env.LINKFLAGS += ['-O0']
232        else:
233            ctx.env.LINKFLAGS += ['-Oz']
234            ctx.env.cshlib_PATTERN = '%s.min.js'
235
236        # doesnt ship file system support in lib
237        ctx.env.LINKFLAGS_cshlib += ['-s', 'NO_FILESYSTEM=1']
238        # put memory file inside generated js files for easier portability
239        ctx.env.LINKFLAGS += ['--memory-init-file', '0']
240        ctx.env.cprogram_PATTERN = "%s.js"
241        ctx.env.cstlib_PATTERN = '%s.a'
242
243        # tell emscripten functions we want to expose
244        from python.lib.gen_external import get_c_declarations, get_cpp_objects_from_c_declarations, get_all_func_names_from_lib, generate_lib_from_c_declarations
245        c_decls = get_c_declarations(usedouble=False)  # emscripten can't use double
246        objects = get_cpp_objects_from_c_declarations(c_decls)
247        # ensure that aubio structs are exported
248        objects += ['fvec_t', 'cvec_t', 'fmat_t']
249        lib = generate_lib_from_c_declarations(objects, c_decls)
250        exported_funcnames = get_all_func_names_from_lib(lib)
251        c_mangled_names = ['_' + s for s in exported_funcnames]
252        ctx.env.LINKFLAGS_cshlib += ['-s', 'EXPORTED_FUNCTIONS=%s' % c_mangled_names]
253
254    if (ctx.options.enable_atlas != True):
255        ctx.options.enable_atlas = False
256
257    # check support for C99 __VA_ARGS__ macros
258    check_c99_varargs = '''
259#include <stdio.h>
260#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
261'''
262
263    if ctx.check_cc(fragment = check_c99_varargs,
264            type='cstlib',
265            msg = 'Checking for C99 __VA_ARGS__ macro',
266            mandatory = False):
267        ctx.define('HAVE_C99_VARARGS_MACROS', 1)
268
269    # show a message about enable_double status
270    if (ctx.options.enable_double == True):
271        ctx.msg('Checking for size of smpl_t', 'double')
272        ctx.msg('Checking for size of lsmp_t', 'long double')
273    else:
274        ctx.msg('Checking for size of smpl_t', 'float')
275        ctx.msg('Checking for size of lsmp_t', 'double')
276
277    # optionally use complex.h
278    if (ctx.options.enable_complex == True):
279        ctx.check(header_name='complex.h')
280    else:
281        ctx.msg('Checking if complex.h is enabled', 'no')
282
283    # check for fftw3
284    if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False):
285        # one of fftwf or fftw3f
286        if (ctx.options.enable_fftw3f != False):
287            ctx.check_cfg(package = 'fftw3f',
288                    args = '--cflags --libs fftw3f >= 3.0.0',
289                    mandatory = ctx.options.enable_fftw3f)
290            if (ctx.options.enable_double == True):
291                ctx.msg('Warning',
292                        'fftw3f enabled, but compiling in double precision!')
293        else:
294            # fftw3f disabled, take most sensible one according to
295            # enable_double
296            if (ctx.options.enable_double == True):
297                ctx.check_cfg(package = 'fftw3',
298                        args = '--cflags --libs fftw3 >= 3.0.0.',
299                        mandatory = ctx.options.enable_fftw3)
300            else:
301                ctx.check_cfg(package = 'fftw3f',
302                        args = '--cflags --libs fftw3f >= 3.0.0',
303                        mandatory = ctx.options.enable_fftw3)
304        ctx.define('HAVE_FFTW3', 1)
305
306    # fftw not enabled, use vDSP or ooura
307    if 'HAVE_FFTW3F' in ctx.env.define_key:
308        ctx.msg('Checking for FFT implementation', 'fftw3f')
309    elif 'HAVE_FFTW3' in ctx.env.define_key:
310        ctx.msg('Checking for FFT implementation', 'fftw3')
311    elif 'HAVE_ACCELERATE' in ctx.env.define_key:
312        ctx.msg('Checking for FFT implementation', 'vDSP')
313    else:
314        ctx.msg('Checking for FFT implementation', 'ooura')
315
316    # check for libsndfile
317    if (ctx.options.enable_sndfile != False):
318        ctx.check_cfg(package = 'sndfile',
319                args = '--cflags --libs sndfile >= 1.0.4',
320                mandatory = ctx.options.enable_sndfile)
321
322    # check for libsamplerate
323    if (ctx.options.enable_double):
324        if (ctx.options.enable_samplerate):
325            ctx.fatal("Could not compile aubio in double precision mode with libsamplerate")
326        else:
327            ctx.options.enable_samplerate = False
328            ctx.msg('Checking if using samplerate', 'no (disabled in double precision mode)',
329                    color = 'YELLOW')
330    if (ctx.options.enable_samplerate != False):
331        ctx.check_cfg(package = 'samplerate',
332                args = '--cflags --libs samplerate >= 0.0.15',
333                mandatory = ctx.options.enable_samplerate)
334
335    # check for jack
336    if (ctx.options.enable_jack != False):
337        ctx.check_cfg(package = 'jack',
338                args = '--cflags --libs',
339                mandatory = ctx.options.enable_jack)
340
341    # check for libav
342    if (ctx.options.enable_avcodec != False):
343        ctx.check_cfg(package = 'libavcodec',
344                args = '--cflags --libs libavcodec >= 54.35.0',
345                uselib_store = 'AVCODEC',
346                mandatory = ctx.options.enable_avcodec)
347        ctx.check_cfg(package = 'libavformat',
348                args = '--cflags --libs libavformat >= 52.3.0',
349                uselib_store = 'AVFORMAT',
350                mandatory = ctx.options.enable_avcodec)
351        ctx.check_cfg(package = 'libavutil',
352                args = '--cflags --libs libavutil >= 52.3.0',
353                uselib_store = 'AVUTIL',
354                mandatory = ctx.options.enable_avcodec)
355        ctx.check_cfg(package = 'libswresample',
356                args = '--cflags --libs libswresample >= 1.2.0',
357                uselib_store = 'SWRESAMPLE',
358                mandatory = False)
359        if 'HAVE_SWRESAMPLE' not in ctx.env:
360            ctx.check_cfg(package = 'libavresample',
361                    args = '--cflags --libs libavresample >= 1.0.1',
362                    uselib_store = 'AVRESAMPLE',
363                    mandatory = False)
364
365        msg_check = 'Checking for all libav libraries'
366        if 'HAVE_AVCODEC' not in ctx.env:
367            ctx.msg(msg_check, 'not found (missing avcodec)', color = 'YELLOW')
368        elif 'HAVE_AVFORMAT' not in ctx.env:
369            ctx.msg(msg_check, 'not found (missing avformat)', color = 'YELLOW')
370        elif 'HAVE_AVUTIL' not in ctx.env:
371            ctx.msg(msg_check, 'not found (missing avutil)', color = 'YELLOW')
372        elif 'HAVE_SWRESAMPLE' not in ctx.env and 'HAVE_AVRESAMPLE' not in ctx.env:
373            resample_missing = 'not found (avresample or swresample required)'
374            ctx.msg(msg_check, resample_missing, color = 'YELLOW')
375        else:
376            ctx.msg(msg_check, 'yes')
377            if 'HAVE_SWRESAMPLE' in ctx.env:
378                ctx.define('HAVE_SWRESAMPLE', 1)
379            elif 'HAVE_AVRESAMPLE' in ctx.env:
380                ctx.define('HAVE_AVRESAMPLE', 1)
381            ctx.define('HAVE_LIBAV', 1)
382
383    if (ctx.options.enable_wavread != False):
384        ctx.define('HAVE_WAVREAD', 1)
385    ctx.msg('Checking if using source_wavread', ctx.options.enable_wavread and 'yes' or 'no')
386    if (ctx.options.enable_wavwrite!= False):
387        ctx.define('HAVE_WAVWRITE', 1)
388    ctx.msg('Checking if using sink_wavwrite', ctx.options.enable_wavwrite and 'yes' or 'no')
389
390    # use ATLAS
391    if (ctx.options.enable_atlas != False):
392        ctx.check(header_name = 'atlas/cblas.h', mandatory = ctx.options.enable_atlas)
393        #ctx.check(lib = 'lapack', uselib_store = 'LAPACK', mandatory = ctx.options.enable_atlas)
394        ctx.check(lib = 'cblas', uselib_store = 'BLAS', mandatory = ctx.options.enable_atlas)
395
396    # use memcpy hacks
397    if (ctx.options.enable_memcpy == True):
398        ctx.define('HAVE_MEMCPY_HACKS', 1)
399
400    # write configuration header
401    ctx.write_config_header('src/config.h')
402
403    # the following defines will be passed as arguments to the compiler
404    # instead of being written to src/config.h
405    ctx.define('HAVE_CONFIG_H', 1)
406
407    # add some defines used in examples
408    ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
409    ctx.define('PACKAGE', APPNAME)
410
411    # double precision mode
412    if (ctx.options.enable_double == True):
413        ctx.define('HAVE_AUBIO_DOUBLE', 1)
414
415    if (ctx.options.enable_docs != False):
416        # check if txt2man is installed, optional
417        try:
418          ctx.find_program('txt2man', var='TXT2MAN')
419        except ctx.errors.ConfigurationError:
420          ctx.to_log('txt2man was not found (ignoring)')
421
422        # check if doxygen is installed, optional
423        try:
424          ctx.find_program('doxygen', var='DOXYGEN')
425        except ctx.errors.ConfigurationError:
426          ctx.to_log('doxygen was not found (ignoring)')
427
428        # check if sphinx-build is installed, optional
429        try:
430          ctx.find_program('sphinx-build', var='SPHINX')
431        except ctx.errors.ConfigurationError:
432          ctx.to_log('sphinx-build was not found (ignoring)')
433
434def build(bld):
435    bld.env['VERSION'] = VERSION
436    bld.env['LIB_VERSION'] = LIB_VERSION
437
438    # main source
439    bld.recurse('src')
440
441    # add sub directories
442    if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']:
443        if bld.env['DEST_OS']=='emscripten' and not bld.options.testcmd:
444            bld.options.testcmd = 'node %s'
445        bld.recurse('examples')
446        bld.recurse('tests')
447
448    # pkg-config template
449    bld( source = 'aubio.pc.in' )
450
451    # documentation
452    txt2man(bld)
453    doxygen(bld)
454    sphinx(bld)
455
456def txt2man(bld):
457    # build manpages from txt files using txt2man
458    if bld.env['TXT2MAN']:
459        from waflib import TaskGen
460        if 'MANDIR' not in bld.env:
461            bld.env['MANDIR'] = bld.env['DATAROOTDIR'] + '/man'
462        bld.env.VERSION = VERSION
463        rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`'
464        rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}'
465        rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual'
466        rule_str += ' -s 1 ${SRC} > ${TGT}'
467        TaskGen.declare_chain(
468                name      = 'txt2man',
469                rule      = rule_str,
470                ext_in    = '.txt',
471                ext_out   = '.1',
472                reentrant = False,
473                install_path =  '${MANDIR}/man1',
474                )
475        bld( source = bld.path.ant_glob('doc/*.txt') )
476
477def doxygen(bld):
478    # build documentation from source files using doxygen
479    if bld.env['DOXYGEN']:
480        bld.env.VERSION = VERSION
481        rule = '( cat ${SRC} && echo PROJECT_NUMBER=${VERSION}; )'
482        rule += ' | doxygen - > /dev/null'
483        bld( name = 'doxygen', rule = rule,
484                source = 'doc/web.cfg',
485                target = '../doc/web/html/index.html',
486                cwd = 'doc')
487        bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc',
488                bld.path.ant_glob('doc/web/html/**'),
489                cwd = bld.path.find_dir ('doc/web'),
490                relative_trick = True)
491
492def sphinx(bld):
493    # build documentation from source files using sphinx-build
494    # note: build in ../doc/_build/html, otherwise waf wont install unsigned files
495    if bld.env['SPHINX']:
496        bld.env.VERSION = VERSION
497        bld( name = 'sphinx',
498                rule = '${SPHINX} -b html -D release=${VERSION} -D version=${VERSION} -a -q `dirname ${SRC}` `dirname ${TGT}`',
499                source = 'doc/conf.py',
500                target = '../doc/_build/html/index.html')
501        bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc/sphinx',
502                bld.path.ant_glob('doc/_build/html/**'),
503                cwd = bld.path.find_dir('doc/_build/html'),
504                relative_trick = True)
505
506# register the previous rules as build rules
507from waflib.Build import BuildContext
508
509class build_txt2man(BuildContext):
510    cmd = 'txt2man'
511    fun = 'txt2man'
512
513class build_manpages(BuildContext):
514    cmd = 'manpages'
515    fun = 'txt2man'
516
517class build_sphinx(BuildContext):
518    cmd = 'sphinx'
519    fun = 'sphinx'
520
521class build_doxygen(BuildContext):
522    cmd = 'doxygen'
523    fun = 'doxygen'
524
525def shutdown(bld):
526    from waflib import Logs
527    if bld.options.target_platform in ['ios', 'iosimulator']:
528        msg ='building for %s, contact the author for a commercial license' % bld.options.target_platform
529        Logs.pprint('RED', msg)
530        msg ='   Paul Brossier <piem@aubio.org>'
531        Logs.pprint('RED', msg)
532
533def dist(ctx):
534    ctx.excl  = ' **/.waf* **/*~ **/*.pyc **/*.swp **/*.swo **/*.swn **/.lock-w* **/.git*'
535    ctx.excl += ' **/build/*'
536    ctx.excl += ' doc/_build'
537    ctx.excl += ' python/demos_*'
538    ctx.excl += ' **/python/gen **/python/build **/python/dist'
539    ctx.excl += ' **/python/ext/config.h'
540    ctx.excl += ' **/python/lib/aubio/_aubio.so'
541    ctx.excl += ' **.egg-info'
542    ctx.excl += ' **/**.zip **/**.tar.bz2'
543    ctx.excl += ' **.tar.bz2'
544    ctx.excl += ' **/doc/full/* **/doc/web/*'
545    ctx.excl += ' **/doc/full.cfg'
546    ctx.excl += ' **/python/*.db'
547    ctx.excl += ' **/python.old/*'
548    ctx.excl += ' **/python/*/*.old'
549    ctx.excl += ' **/python/tests/sounds'
550    ctx.excl += ' **/**.asc'
551    ctx.excl += ' **/dist*'
552    ctx.excl += ' **/.DS_Store'
553    ctx.excl += ' **/.travis.yml'
554    ctx.excl += ' **/.landscape.yml'
555    ctx.excl += ' **/.appveyor.yml'
Note: See TracBrowser for help on using the repository browser.