source: wscript @ 6cbf34b

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since 6cbf34b was 341585b, checked in by Martin Hermant <martin.hermant@gmail.com>, 7 years ago

wscript : emscripten pass more debug flags in debug mode (ASSERTION=2,SAFE_HEAP=1,ALIASING_FUNCTION_POINTERS=0)

  • Property mode set to 100644
File size: 21.9 KB
RevLine 
[5c411dc]1#! /usr/bin/python
[110ac90]2#
[21ee709]3# usage:
[46b00690]4#   $ python waf --help
5#
6# example:
7#   $ ./waf distclean configure build
[21ee709]8#
[46b00690]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/ .
[000b090]12
[004b431]13import sys
14
[000b090]15APPNAME = 'aubio'
[5820107]16
[b991cc1]17from this_version import *
[5820107]18
[255c4c8]19VERSION = get_aubio_version()
20LIB_VERSION = get_libaubio_version()
[e565c649]21
[46378b3]22top = '.'
23out = 'build'
[000b090]24
[6b14351]25def add_option_enable_disable(ctx, name, default = None,
26        help_str = None, help_disable_str = None):
[a93dab3]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 )
[3819aca]39
[d41bc4d]40def options(ctx):
[b4ce693]41    ctx.add_option('--build-type', action = 'store',
42            default = "release",
43            choices = ('debug', 'release'),
44            dest = 'build_type',
[fb6a0ff]45            help = 'whether to compile with (--build-type=release) or without (--build-type=debug) '\
[b4ce693]46              ' compiler opimizations [default: release]')
[a93dab3]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)')
[a3de4be]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)')
[0309a22]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')
[cc81763]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')
[f61ffb9]83    add_option_enable_disable(ctx, 'atlas', default = False,
84            help_str = 'use Atlas library (no)',
[f0ce36a1]85            help_disable_str = 'do not use Atlas library')
[f9a543e]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')
[a93dab3]92
[a33d406]93    add_option_enable_disable(ctx, 'docs', default = None,
94            help_str = 'build documentation (auto)',
95            help_disable_str = 'do not build documentation')
96
[a93dab3]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')
[000b090]103
[d41bc4d]104def configure(ctx):
[a93dab3]105    from waflib import Options
106    ctx.load('compiler_c')
107    ctx.load('waf_unit_test')
108    ctx.load('gnu_dirs')
[06dba46]109
[fc5e189]110    target_platform = sys.platform
111    if ctx.options.target_platform:
112        target_platform = ctx.options.target_platform
113
114
115    if target_platform=='emscripten':
116        # need to force spaces between flag -o and path
117        # inspired from :
118        # https://github.com/waf-project/waf/blob/master/waflib/extras/c_emscripten.py (#1885)
119        # (OSX /emscripten 1.37.9)
120        ctx.env.CC_TGT_F            = ['-c', '-o', '']
121        ctx.env.CCLNK_TGT_F         = ['-o', '']
[bef979a]122    # check for common headers
123    ctx.check(header_name='stdlib.h')
124    ctx.check(header_name='stdio.h')
125    ctx.check(header_name='math.h')
126    ctx.check(header_name='string.h')
127    ctx.check(header_name='limits.h')
[f334300]128    ctx.check(header_name='stdarg.h')
[d746ef8]129    ctx.check(header_name='getopt.h', mandatory = False)
[06cf47d]130    ctx.check(header_name='unistd.h', mandatory = False)
[bef979a]131
[a93dab3]132    ctx.env['DEST_OS'] = target_platform
133
[b4ce693]134    if ctx.options.build_type == "debug":
135        ctx.define('DEBUG', 1)
136    else:
137        ctx.define('NDEBUG', 1)
[578d3a2]138
[ae36035]139    if ctx.env.CC_NAME != 'msvc':
[c04346d]140        if ctx.options.build_type == "debug":
141            # no optimization in debug mode
[a6ba5d9f]142            ctx.env.prepend_value('CFLAGS', ['-O0'])
143        else:
[1539d4b]144            if target_platform == 'emscripten':
145                # -Oz for small js file generation
146                ctx.env.prepend_value('CFLAGS', ['-Oz'])
147            else:
[deaf39e]148                # default to -O2 in release mode
149                ctx.env.prepend_value('CFLAGS', ['-O2'])
[a6ba5d9f]150        # enable debug symbols and configure warnings
151        ctx.env.prepend_value('CFLAGS', ['-g', '-Wall', '-Wextra'])
[a341685]152    else:
[b4ce693]153        # enable debug symbols
154        ctx.env.CFLAGS += ['/Z7', '/FS']
155        ctx.env.LINKFLAGS += ['/DEBUG', '/INCREMENTAL:NO']
156        # configure warnings
157        ctx.env.CFLAGS += ['/W4', '/D_CRT_SECURE_NO_WARNINGS']
[578d3a2]158        # set optimization level and runtime libs
[b4ce693]159        if (ctx.options.build_type == "release"):
160            ctx.env.CFLAGS += ['/Ox']
161            ctx.env.CFLAGS += ['/MD']
162        else:
163            assert(ctx.options.build_type == "debug")
164            ctx.env.CFLAGS += ['/MDd']
[578d3a2]165
[70a304e]166    ctx.check_cc(lib='m', uselib_store='M', mandatory=False)
167
[06dba46]168    if target_platform not in ['win32', 'win64']:
169        ctx.env.CFLAGS += ['-fPIC']
170    else:
171        ctx.define('HAVE_WIN_HACKS', 1)
172        ctx.env['cshlib_PATTERN'] = 'lib%s.dll'
[a93dab3]173
[a3de4be]174    if target_platform == 'darwin' and ctx.options.enable_fat:
[a93dab3]175        ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
176        ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
[da1709f]177        MINSDKVER="10.4"
178        ctx.env.CFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ]
179        ctx.env.LINKFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ]
[9209c79]180
181    if target_platform in [ 'darwin', 'ios', 'iosimulator']:
[cc81763]182        if (ctx.options.enable_apple_audio != False):
183            ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
184            ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1)
185            ctx.define('HAVE_SINK_APPLE_AUDIO', 1)
[f61ffb9]186            ctx.msg('Checking for AudioToolbox.framework', 'yes')
187        else:
188            ctx.msg('Checking for AudioToolbox.framework', 'no (disabled)', color = 'YELLOW')
[0309a22]189        if (ctx.options.enable_accelerate != False):
190            ctx.define('HAVE_ACCELERATE', 1)
191            ctx.env.FRAMEWORK += ['Accelerate']
[f61ffb9]192            ctx.msg('Checking for Accelerate framework', 'yes')
193        else:
[488381e]194            ctx.msg('Checking for Accelerate framework', 'no (disabled)', color = 'YELLOW')
[a93dab3]195
196    if target_platform in [ 'ios', 'iosimulator' ]:
197        MINSDKVER="6.1"
198        ctx.env.CFLAGS += ['-std=c99']
[536bf70]199        if (ctx.options.enable_apple_audio != False):
[cc81763]200            ctx.define('HAVE_AUDIO_UNIT', 1)
201            #ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
[a93dab3]202        if target_platform == 'ios':
203            DEVROOT = "/Applications/Xcode.app/Contents"
204            DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer"
[e11ce489]205            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS.sdk" % locals()
[94b16497]206            ctx.env.CFLAGS += [ '-fembed-bitcode' ]
[7aa4aaa]207            ctx.env.CFLAGS += [ '-arch', 'arm64' ]
[a93dab3]208            ctx.env.CFLAGS += [ '-arch', 'armv7' ]
209            ctx.env.CFLAGS += [ '-arch', 'armv7s' ]
[7aa4aaa]210            ctx.env.LINKFLAGS += [ '-arch', 'arm64' ]
[a93dab3]211            ctx.env.LINKFLAGS += ['-arch', 'armv7']
212            ctx.env.LINKFLAGS += ['-arch', 'armv7s']
213            ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
214            ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
215        else:
216            DEVROOT = "/Applications/Xcode.app/Contents"
217            DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer"
[e11ce489]218            SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals()
[a93dab3]219            ctx.env.CFLAGS += [ '-arch', 'i386' ]
220            ctx.env.CFLAGS += [ '-arch', 'x86_64' ]
221            ctx.env.LINKFLAGS += ['-arch', 'i386']
222            ctx.env.LINKFLAGS += ['-arch', 'x86_64']
223            ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
224            ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
225        ctx.env.CFLAGS += [ '-isysroot' , SDKROOT]
226        ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT]
227
[fb5838a]228    if target_platform == 'emscripten':
229        import os.path
230        ctx.env.CFLAGS += [ '-I' + os.path.join(os.environ['EMSCRIPTEN'], 'system', 'include') ]
[023e4b2]231       
232        if ctx.options.build_type == "debug":
233            ctx.env.cshlib_PATTERN = '%s.js'
[341585b]234            ctx.env.LINKFLAGS_cshlib += ['-s','ASSERTIONS=2']
235            ctx.env.LINKFLAGS_cshlib += ['-s','SAFE_HEAP=1']
236            ctx.env.LINKFLAGS_cshlib += ['-s','ALIASING_FUNCTION_POINTERS=0']
[023e4b2]237        else:
238            ctx.env.LINKFLAGS += ['-Oz']
239            ctx.env.cshlib_PATTERN = '%s.min.js'
240       
[fb5838a]241        ctx.env.cprogram_PATTERN = "%s.js"
242        if (ctx.options.enable_atlas != True):
243            ctx.options.enable_atlas = False
244
[a93dab3]245    # check support for C99 __VA_ARGS__ macros
246    check_c99_varargs = '''
[0318cc1]247#include <stdio.h>
248#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
249'''
[a93dab3]250
251    if ctx.check_cc(fragment = check_c99_varargs,
252            type='cstlib',
[413d4bf]253            msg = 'Checking for C99 __VA_ARGS__ macro',
254            mandatory = False):
[a93dab3]255        ctx.define('HAVE_C99_VARARGS_MACROS', 1)
256
[06c6d7d]257    # show a message about enable_double status
[a93dab3]258    if (ctx.options.enable_double == True):
[06c6d7d]259        ctx.msg('Checking for size of smpl_t', 'double')
260        ctx.msg('Checking for size of lsmp_t', 'long double')
[a93dab3]261    else:
[06c6d7d]262        ctx.msg('Checking for size of smpl_t', 'float')
263        ctx.msg('Checking for size of lsmp_t', 'double')
[a93dab3]264
265    # optionally use complex.h
266    if (ctx.options.enable_complex == True):
267        ctx.check(header_name='complex.h')
[06c6d7d]268    else:
269        ctx.msg('Checking if complex.h is enabled', 'no')
[a93dab3]270
271    # check for fftw3
272    if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False):
273        # one of fftwf or fftw3f
274        if (ctx.options.enable_fftw3f != False):
[badb525]275            ctx.check_cfg(package = 'fftw3f',
276                    args = '--cflags --libs fftw3f >= 3.0.0',
[795fcd9]277                    mandatory = ctx.options.enable_fftw3f)
[a93dab3]278            if (ctx.options.enable_double == True):
[795fcd9]279                ctx.msg('Warning',
280                        'fftw3f enabled, but compiling in double precision!')
[a93dab3]281        else:
[795fcd9]282            # fftw3f disabled, take most sensible one according to
283            # enable_double
[a93dab3]284            if (ctx.options.enable_double == True):
[badb525]285                ctx.check_cfg(package = 'fftw3',
286                        args = '--cflags --libs fftw3 >= 3.0.0.',
287                        mandatory = ctx.options.enable_fftw3)
[a93dab3]288            else:
[badb525]289                ctx.check_cfg(package = 'fftw3f',
290                        args = '--cflags --libs fftw3f >= 3.0.0',
[795fcd9]291                        mandatory = ctx.options.enable_fftw3)
[a93dab3]292        ctx.define('HAVE_FFTW3', 1)
293
294    # fftw not enabled, use vDSP or ooura
295    if 'HAVE_FFTW3F' in ctx.env.define_key:
296        ctx.msg('Checking for FFT implementation', 'fftw3f')
297    elif 'HAVE_FFTW3' in ctx.env.define_key:
298        ctx.msg('Checking for FFT implementation', 'fftw3')
299    elif 'HAVE_ACCELERATE' in ctx.env.define_key:
300        ctx.msg('Checking for FFT implementation', 'vDSP')
[36f954a]301    else:
[a93dab3]302        ctx.msg('Checking for FFT implementation', 'ooura')
303
304    # check for libsndfile
305    if (ctx.options.enable_sndfile != False):
[badb525]306        ctx.check_cfg(package = 'sndfile',
307                args = '--cflags --libs sndfile >= 1.0.4',
[795fcd9]308                mandatory = ctx.options.enable_sndfile)
[a93dab3]309
310    # check for libsamplerate
[8be88e7]311    if (ctx.options.enable_double):
312        if (ctx.options.enable_samplerate):
313            ctx.fatal("Could not compile aubio in double precision mode with libsamplerate")
314        else:
315            ctx.options.enable_samplerate = False
316            ctx.msg('Checking if using samplerate', 'no (disabled in double precision mode)',
317                    color = 'YELLOW')
[a93dab3]318    if (ctx.options.enable_samplerate != False):
[badb525]319        ctx.check_cfg(package = 'samplerate',
320                args = '--cflags --libs samplerate >= 0.0.15',
[795fcd9]321                mandatory = ctx.options.enable_samplerate)
[a93dab3]322
323    # check for jack
324    if (ctx.options.enable_jack != False):
[eb99982]325        ctx.check_cfg(package = 'jack',
[795fcd9]326                args = '--cflags --libs',
327                mandatory = ctx.options.enable_jack)
[a93dab3]328
329    # check for libav
330    if (ctx.options.enable_avcodec != False):
[badb525]331        ctx.check_cfg(package = 'libavcodec',
332                args = '--cflags --libs libavcodec >= 54.35.0',
333                uselib_store = 'AVCODEC',
[795fcd9]334                mandatory = ctx.options.enable_avcodec)
[badb525]335        ctx.check_cfg(package = 'libavformat',
336                args = '--cflags --libs libavformat >= 52.3.0',
337                uselib_store = 'AVFORMAT',
[795fcd9]338                mandatory = ctx.options.enable_avcodec)
[badb525]339        ctx.check_cfg(package = 'libavutil',
340                args = '--cflags --libs libavutil >= 52.3.0',
341                uselib_store = 'AVUTIL',
[795fcd9]342                mandatory = ctx.options.enable_avcodec)
[badb525]343        ctx.check_cfg(package = 'libswresample',
[65b5381]344                args = '--cflags --libs libswresample >= 1.2.0',
[badb525]345                uselib_store = 'SWRESAMPLE',
[d82e7a4]346                mandatory = False)
347        if 'HAVE_SWRESAMPLE' not in ctx.env:
[badb525]348            ctx.check_cfg(package = 'libavresample',
349                    args = '--cflags --libs libavresample >= 1.0.1',
350                    uselib_store = 'AVRESAMPLE',
[d82e7a4]351                    mandatory = False)
352
353        msg_check = 'Checking for all libav libraries'
354        if 'HAVE_AVCODEC' not in ctx.env:
355            ctx.msg(msg_check, 'not found (missing avcodec)', color = 'YELLOW')
356        elif 'HAVE_AVFORMAT' not in ctx.env:
357            ctx.msg(msg_check, 'not found (missing avformat)', color = 'YELLOW')
358        elif 'HAVE_AVUTIL' not in ctx.env:
359            ctx.msg(msg_check, 'not found (missing avutil)', color = 'YELLOW')
360        elif 'HAVE_SWRESAMPLE' not in ctx.env and 'HAVE_AVRESAMPLE' not in ctx.env:
[c3b3b84]361            resample_missing = 'not found (avresample or swresample required)'
362            ctx.msg(msg_check, resample_missing, color = 'YELLOW')
[549928e]363        else:
[d82e7a4]364            ctx.msg(msg_check, 'yes')
365            if 'HAVE_SWRESAMPLE' in ctx.env:
366                ctx.define('HAVE_SWRESAMPLE', 1)
367            elif 'HAVE_AVRESAMPLE' in ctx.env:
368                ctx.define('HAVE_AVRESAMPLE', 1)
369            ctx.define('HAVE_LIBAV', 1)
[a93dab3]370
[f9a543e]371    if (ctx.options.enable_wavread != False):
372        ctx.define('HAVE_WAVREAD', 1)
373    ctx.msg('Checking if using source_wavread', ctx.options.enable_wavread and 'yes' or 'no')
374    if (ctx.options.enable_wavwrite!= False):
375        ctx.define('HAVE_WAVWRITE', 1)
376    ctx.msg('Checking if using sink_wavwrite', ctx.options.enable_wavwrite and 'yes' or 'no')
[5158c22]377
[f0ce36a1]378    # use ATLAS
379    if (ctx.options.enable_atlas != False):
380        ctx.check(header_name = 'atlas/cblas.h', mandatory = ctx.options.enable_atlas)
381        #ctx.check(lib = 'lapack', uselib_store = 'LAPACK', mandatory = ctx.options.enable_atlas)
382        ctx.check(lib = 'cblas', uselib_store = 'BLAS', mandatory = ctx.options.enable_atlas)
383
[a93dab3]384    # use memcpy hacks
385    if (ctx.options.enable_memcpy == True):
386        ctx.define('HAVE_MEMCPY_HACKS', 1)
387
388    # write configuration header
389    ctx.write_config_header('src/config.h')
390
[06c6d7d]391    # the following defines will be passed as arguments to the compiler
392    # instead of being written to src/config.h
[1910fed]393    ctx.define('HAVE_CONFIG_H', 1)
[06c6d7d]394
[a93dab3]395    # add some defines used in examples
396    ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
397    ctx.define('PACKAGE', APPNAME)
398
[06c6d7d]399    # double precision mode
400    if (ctx.options.enable_double == True):
401        ctx.define('HAVE_AUBIO_DOUBLE', 1)
402
[a33d406]403    if (ctx.options.enable_docs != False):
404        # check if txt2man is installed, optional
405        try:
406          ctx.find_program('txt2man', var='TXT2MAN')
407        except ctx.errors.ConfigurationError:
408          ctx.to_log('txt2man was not found (ignoring)')
[000b090]409
[a33d406]410        # check if doxygen is installed, optional
411        try:
412          ctx.find_program('doxygen', var='DOXYGEN')
413        except ctx.errors.ConfigurationError:
414          ctx.to_log('doxygen was not found (ignoring)')
[52a25e5]415
[7800335]416        # check if sphinx-build is installed, optional
417        try:
418          ctx.find_program('sphinx-build', var='SPHINX')
419        except ctx.errors.ConfigurationError:
420          ctx.to_log('sphinx-build was not found (ignoring)')
421
[6ed0f4e]422def build(bld):
[985a5d1]423    bld.env['VERSION'] = VERSION
424    bld.env['LIB_VERSION'] = LIB_VERSION
425
[7b38f3f]426    # main source
[985a5d1]427    bld.recurse('src')
[7b38f3f]428
429    # add sub directories
[985a5d1]430    if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']:
431        bld.recurse('examples')
432        bld.recurse('tests')
433
[7b38f3f]434    # pkg-config template
[985a5d1]435    bld( source = 'aubio.pc.in' )
436
[7b38f3f]437    # documentation
438    txt2man(bld)
439    doxygen(bld)
440    sphinx(bld)
441
442def txt2man(bld):
[52a25e5]443    # build manpages from txt files using txt2man
[403e9dd]444    if bld.env['TXT2MAN']:
[985a5d1]445        from waflib import TaskGen
446        if 'MANDIR' not in bld.env:
[641e533]447            bld.env['MANDIR'] = bld.env['DATAROOTDIR'] + '/man'
[e3b77e8]448        bld.env.VERSION = VERSION
[403e9dd]449        rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`'
450        rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}'
451        rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual'
452        rule_str += ' -s 1 ${SRC} > ${TGT}'
[985a5d1]453        TaskGen.declare_chain(
[403e9dd]454                name      = 'txt2man',
455                rule      = rule_str,
456                ext_in    = '.txt',
[985a5d1]457                ext_out   = '.1',
458                reentrant = False,
459                install_path =  '${MANDIR}/man1',
460                )
[403e9dd]461        bld( source = bld.path.ant_glob('doc/*.txt') )
[985a5d1]462
[7b38f3f]463def doxygen(bld):
[52a25e5]464    # build documentation from source files using doxygen
465    if bld.env['DOXYGEN']:
[a24a84e]466        bld.env.VERSION = VERSION
467        rule = '( cat ${SRC} && echo PROJECT_NUMBER=${VERSION}; )'
468        rule += ' | doxygen - > /dev/null'
469        bld( name = 'doxygen', rule = rule,
[52a25e5]470                source = 'doc/web.cfg',
[41dd34e]471                target = '../doc/web/html/index.html',
[7f35041]472                cwd = 'doc')
[641e533]473        bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc',
[52a25e5]474                bld.path.ant_glob('doc/web/html/**'),
475                cwd = bld.path.find_dir ('doc/web'),
476                relative_trick = True)
[7800335]477
[7b38f3f]478def sphinx(bld):
[7800335]479    # build documentation from source files using sphinx-build
[5a19f33]480    # note: build in ../doc/_build/html, otherwise waf wont install unsigned files
[7800335]481    if bld.env['SPHINX']:
[e3b77e8]482        bld.env.VERSION = VERSION
[5a19f33]483        bld( name = 'sphinx',
[e3b77e8]484                rule = '${SPHINX} -b html -D release=${VERSION} -D version=${VERSION} -a -q `dirname ${SRC}` `dirname ${TGT}`',
[7b38f3f]485                source = 'doc/conf.py',
[5a19f33]486                target = '../doc/_build/html/index.html')
[641e533]487        bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc/sphinx',
[7800335]488                bld.path.ant_glob('doc/_build/html/**'),
[5a19f33]489                cwd = bld.path.find_dir('doc/_build/html'),
[7800335]490                relative_trick = True)
[50d56cc]491
[7b38f3f]492# register the previous rules as build rules
493from waflib.Build import BuildContext
494
495class build_txt2man(BuildContext):
496    cmd = 'txt2man'
497    fun = 'txt2man'
498
499class build_manpages(BuildContext):
500    cmd = 'manpages'
501    fun = 'txt2man'
502
503class build_sphinx(BuildContext):
504    cmd = 'sphinx'
505    fun = 'sphinx'
506
507class build_doxygen(BuildContext):
508    cmd = 'doxygen'
509    fun = 'doxygen'
510
[30250de]511def shutdown(bld):
[985a5d1]512    from waflib import Logs
513    if bld.options.target_platform in ['ios', 'iosimulator']:
514        msg ='building for %s, contact the author for a commercial license' % bld.options.target_platform
515        Logs.pprint('RED', msg)
516        msg ='   Paul Brossier <piem@aubio.org>'
517        Logs.pprint('RED', msg)
[b4d1ba1]518
519def dist(ctx):
[3388e1a]520    ctx.excl  = ' **/.waf* **/*~ **/*.pyc **/*.swp **/*.swo **/*.swn **/.lock-w* **/.git*'
[b4d1ba1]521    ctx.excl += ' **/build/*'
[99d8cbb]522    ctx.excl += ' doc/_build'
523    ctx.excl += ' python/demos_*'
[22dd9dc]524    ctx.excl += ' **/python/gen **/python/build **/python/dist'
[981e7082]525    ctx.excl += ' **/python/ext/config.h'
[99d8cbb]526    ctx.excl += ' **/python/lib/aubio/_aubio.so'
527    ctx.excl += ' **.egg-info'
[22dd9dc]528    ctx.excl += ' **/**.zip **/**.tar.bz2'
[7b38f3f]529    ctx.excl += ' **.tar.bz2'
[a93dab3]530    ctx.excl += ' **/doc/full/* **/doc/web/*'
[e57a7d4]531    ctx.excl += ' **/doc/full.cfg'
[b4d1ba1]532    ctx.excl += ' **/python/*.db'
533    ctx.excl += ' **/python.old/*'
[981e7082]534    ctx.excl += ' **/python/*/*.old'
[172b1fe]535    ctx.excl += ' **/python/tests/sounds'
[7b2d740]536    ctx.excl += ' **/**.asc'
[5e544f1]537    ctx.excl += ' **/dist*'
[73aac2a]538    ctx.excl += ' **/.DS_Store'
539    ctx.excl += ' **/.travis.yml'
[5e544f1]540    ctx.excl += ' **/.landscape.yml'
541    ctx.excl += ' **/.appveyor.yml'
Note: See TracBrowser for help on using the repository browser.