source: wscript @ 65860ff

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 65860ff was 65860ff, checked in by Paul Brossier <piem@piem.org>, 11 years ago

wscript: add docbook-to-man rules

  • Property mode set to 100644
File size: 7.6 KB
RevLine 
[5c411dc]1#! /usr/bin/python
[110ac90]2#
[21ee709]3# waf build script, see http://code.google.com/p/waf/
4# usage:
5#     $ waf distclean configure build
6# get it:
7#     $ svn co http://waf.googlecode.com/svn/trunk /path/to/waf
8#     $ alias waf=/path/to/waf/waf-light
9#
10# TODO
[ee36175]11#  - doc: add doxygen
[110ac90]12#  - tests: move to new unit test system
[000b090]13
14APPNAME = 'aubio'
[5820107]15
16# read from VERSION
17for l in open('VERSION').readlines(): exec (l.strip())
18
19VERSION = '.'.join \
20        ([str(x) for x in [AUBIO_MAJOR_VERSION, AUBIO_MINOR_VERSION, AUBIO_PATCH_VERSION]]) \
21        + AUBIO_VERSION_STATUS
22LIB_VERSION = '.'.join \
23        ([str(x) for x in [LIBAUBIO_LT_CUR, LIBAUBIO_LT_REV, LIBAUBIO_LT_AGE]])
[e565c649]24
25import os.path, sys
26if os.path.exists('src/config.h') or os.path.exists('Makefile'):
[7684ff2]27    print "Please run 'make distclean' to clean-up autotools files before using waf"
[e565c649]28    sys.exit(1)
29
[46378b3]30top = '.'
31out = 'build'
[000b090]32
[d41bc4d]33def options(ctx):
34  ctx.add_option('--enable-double', action='store_true', default=False,
[06d30f9]35      help='compile aubio in double precision mode')
[002563f]36  ctx.add_option('--enable-fftw3f', action='store_true', default=False,
37      help='compile with fftw3f instead of ooura (recommended)')
38  ctx.add_option('--enable-fftw3', action='store_true', default=False,
39      help='compile with fftw3 instead of ooura (recommended in double precision)')
[d41bc4d]40  ctx.add_option('--enable-complex', action='store_true', default=False,
[62b8ab2]41      help='compile with C99 complex')
[0318cc1]42  ctx.add_option('--enable-jack', action='store_true', default=None,
[2a6e672]43      help='compile with jack support')
[0318cc1]44  ctx.add_option('--enable-lash', action='store_true', default=None,
[2a6e672]45      help='compile with lash support')
[0318cc1]46  ctx.add_option('--enable-sndfile', action='store_true', default=None,
[110ac90]47      help='compile with libsndfile support')
[0318cc1]48  ctx.add_option('--enable-samplerate', action='store_true', default=None,
[2a6e672]49      help='compile with libsamplerate support')
[d41bc4d]50  ctx.add_option('--with-target-platform', type='string',
[5c411dc]51      help='set target platform for cross-compilation', dest='target_platform')
[d41bc4d]52  ctx.load('compiler_c')
53  ctx.load('waf_unit_test')
[000b090]54
[d41bc4d]55def configure(ctx):
[6ed0f4e]56  from waflib import Options
57  ctx.load('compiler_c')
[d41bc4d]58  ctx.load('waf_unit_test')
[c57ecd9]59  ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra']
[000b090]60
[5c411dc]61  if Options.options.target_platform:
62    Options.platform = Options.options.target_platform
63
64  if Options.platform == 'win32':
[d41bc4d]65    ctx.env['shlib_PATTERN'] = 'lib%s.dll'
[5c411dc]66
[956e113]67  if Options.platform == 'darwin':
[d6001bf]68    ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
69    ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
70    ctx.env.CC = 'llvm-gcc-4.2'
71    ctx.env.LINK_CC = 'llvm-gcc-4.2'
[54dd945]72    ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox', 'Accelerate']
73    ctx.define('HAVE_ACCELERATE', 1)
[d6001bf]74
[a1da37f]75  if Options.platform == 'ios':
76    ctx.env.CC = 'clang'
77    ctx.env.LD = 'clang'
78    ctx.env.LINK_CC = 'clang'
79    SDKVER="6.1"
80    DEVROOT="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer"
81    SDKROOT="%(DEVROOT)s/SDKs/iPhoneOS%(SDKVER)s.sdk" % locals()
[54dd945]82    ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox', 'Accelerate']
83    ctx.define('HAVE_ACCELERATE', 1)
[a1da37f]84    ctx.env.CFLAGS += [ '-miphoneos-version-min=6.1', '-arch', 'armv7',
85            '--sysroot=%s' % SDKROOT]
86    ctx.env.LINKFLAGS += ['-std=c99', '-arch', 'armv7', '--sysroot=%s' %
87            SDKROOT]
88
[000b090]89  # check for required headers
[d41bc4d]90  ctx.check(header_name='stdlib.h')
91  ctx.check(header_name='stdio.h')
92  ctx.check(header_name='math.h')
93  ctx.check(header_name='string.h')
94  ctx.check(header_name='limits.h')
[000b090]95
[0318cc1]96  # check support for C99 __VA_ARGS__ macros
97  check_c99_varargs = '''
98#include <stdio.h>
99#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
100'''
101  if ctx.check_cc(fragment = check_c99_varargs,
102      type='cstlib',
103      msg = 'Checking for C99 __VA_ARGS__ macro'):
104    ctx.define('HAVE_C99_VARARGS_MACROS', 1)
105
[000b090]106  # optionally use complex.h
[62b8ab2]107  if (Options.options.enable_complex == True):
[d41bc4d]108    ctx.check(header_name='complex.h')
[000b090]109
[2e4fb04]110  # check dependencies
[0318cc1]111  if (Options.options.enable_sndfile != False):
112      ctx.check_cfg(package = 'sndfile', atleast_version = '1.0.4',
113        args = '--cflags --libs', mandatory = False)
114  if (Options.options.enable_samplerate != False):
[d41bc4d]115      ctx.check_cfg(package = 'samplerate', atleast_version = '0.0.15',
[0318cc1]116        args = '--cflags --libs', mandatory = False)
[000b090]117
[06d30f9]118  # double precision mode
119  if (Options.options.enable_double == True):
[d41bc4d]120    ctx.define('HAVE_AUBIO_DOUBLE', 1)
[06d30f9]121  else:
[d41bc4d]122    ctx.define('HAVE_AUBIO_DOUBLE', 0)
[06d30f9]123
[36f954a]124  # optional dependancies using pkg-config
[002563f]125  if (Options.options.enable_fftw3 != False or Options.options.enable_fftw3f != False):
[0318cc1]126    # one of fftwf or fftw3f
127    if (Options.options.enable_fftw3f != False):
128      ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
129          args = '--cflags --libs', mandatory = False)
130      if (Options.options.enable_double == True):
131        ctx.msg('Warning', 'fftw3f enabled, but aubio compiled in double precision!')
[36f954a]132    else:
[0318cc1]133      # fftw3f not enabled, take most sensible one according to enable_double
134      if (Options.options.enable_double == True):
135        ctx.check_cfg(package = 'fftw3', atleast_version = '3.0.0',
136            args = '--cflags --libs', mandatory = False)
137      else:
138        ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
139            args = '--cflags --libs', mandatory = False)
140    ctx.define('HAVE_FFTW3', 1)
141  else:
142    # fftw disabled, use ooura
[54dd945]143    if 'HAVE_ACCELERATE' in ctx.env.define_key:
144        ctx.msg('Checking for FFT implementation', 'vDSP')
145    else:
146        ctx.msg('Checking for FFT implementation', 'ooura')
[0318cc1]147    pass
[000b090]148
[0318cc1]149  if (Options.options.enable_jack != False):
150    ctx.check_cfg(package = 'jack', atleast_version = '0.15.0',
151    args = '--cflags --libs', mandatory = False)
152
153  if (Options.options.enable_lash != False):
154    ctx.check_cfg(package = 'lash-1.0', atleast_version = '0.5.0',
155    args = '--cflags --libs', uselib_store = 'LASH', mandatory = False)
[000b090]156
157  # write configuration header
[d41bc4d]158  ctx.write_config_header('src/config.h')
[000b090]159
[110ac90]160  # add some defines used in examples
[d41bc4d]161  ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
162  ctx.define('PACKAGE', APPNAME)
[000b090]163
164  # check if docbook-to-man is installed, optional
[110ac90]165  try:
[d41bc4d]166    ctx.find_program('docbook-to-man', var='DOCBOOKTOMAN')
167  except ctx.errors.ConfigurationError:
168    ctx.to_log('docbook-to-man was not found (ignoring)')
[000b090]169
[6ed0f4e]170def build(bld):
171  bld.env['VERSION'] = VERSION
172  bld.env['LIB_VERSION'] = LIB_VERSION
[000b090]173
174  # add sub directories
[81fe3273]175  bld.recurse('src')
[a1da37f]176  from waflib import Options
[81fe3273]177  if Options.platform != 'ios':
178      bld.recurse('examples')
179      bld.recurse('tests')
[000b090]180
[6ed0f4e]181  """
[000b090]182  # create the aubio.pc file for pkg-config
[d41bc4d]183  if ctx.env['TARGET_PLATFORM'] == 'linux':
184    aubiopc = ctx.new_task_gen('subst')
[110ac90]185    aubiopc.source = 'aubio.pc.in'
186    aubiopc.target = 'aubio.pc'
187    aubiopc.install_path = '${PREFIX}/lib/pkgconfig'
[000b090]188
[65860ff]189  # install woodblock sound
190  bld.install_files('${PREFIX}/share/sounds/aubio/',
191      'sounds/woodblock.aiff')
192  """
193
[000b090]194  # build manpages from sgml files
[65860ff]195  if bld.env['DOCBOOKTOMAN']:
196    from waflib import TaskGen
[000b090]197    TaskGen.declare_chain(
198        name    = 'docbooktoman',
199        rule    = '${DOCBOOKTOMAN} ${SRC} > ${TGT}',
200        ext_in  = '.sgml',
201        ext_out = '.1',
202        reentrant = 0,
203    )
[65860ff]204    manpages = bld(name = 'docbooktoman',
205            source=bld.path.ant_glob('doc/*.sgml'))
206    bld.install_files('${MANDIR}/man1',
207            bld.path.ant_glob('doc/*.1'))
[30250de]208
209def shutdown(bld):
210    from waflib import Options, Logs
211    if Options.platform == 'ios':
212          msg ='aubio built for ios, contact the author for a commercial license'
213          Logs.pprint('RED', msg)
214          msg ='   Paul Brossier <piem@aubio.org>'
215          Logs.pprint('RED', msg)
Note: See TracBrowser for help on using the repository browser.