source: wscript @ bad88364

sampler
Last change on this file since bad88364 was bad88364, checked in by Paul Brossier <piem@piem.org>, 7 years ago

Merge branch 'master' into sampler

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