source: wscript @ 845c435

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

wscript: remove old cruft, fix manpage generation

  • Property mode set to 100644
File size: 7.5 KB
Line 
1#! /usr/bin/python
2#
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
11#  - doc: add doxygen
12#  - tests: move to new unit test system
13
14APPNAME = 'aubio'
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]])
24
25import os.path, sys
26if os.path.exists('src/config.h') or os.path.exists('Makefile'):
27    print "Please run 'make distclean' to clean-up autotools files before using waf"
28    sys.exit(1)
29
30top = '.'
31out = 'build'
32
33def options(ctx):
34  ctx.add_option('--enable-double', action='store_true', default=False,
35      help='compile aubio in double precision mode')
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)')
40  ctx.add_option('--enable-complex', action='store_true', default=False,
41      help='compile with C99 complex')
42  ctx.add_option('--enable-jack', action='store_true', default=None,
43      help='compile with jack support')
44  ctx.add_option('--enable-lash', action='store_true', default=None,
45      help='compile with lash support')
46  ctx.add_option('--enable-sndfile', action='store_true', default=None,
47      help='compile with libsndfile support')
48  ctx.add_option('--enable-samplerate', action='store_true', default=None,
49      help='compile with libsamplerate support')
50  ctx.add_option('--with-target-platform', type='string',
51      help='set target platform for cross-compilation', dest='target_platform')
52  ctx.load('compiler_c')
53  ctx.load('waf_unit_test')
54
55def configure(ctx):
56  from waflib import Options
57  ctx.load('compiler_c')
58  ctx.load('waf_unit_test')
59  ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra']
60
61  if Options.options.target_platform:
62    Options.platform = Options.options.target_platform
63
64  if Options.platform == 'win32':
65    ctx.env['shlib_PATTERN'] = 'lib%s.dll'
66
67  if Options.platform == 'darwin':
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'
72    ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox', 'Accelerate']
73    ctx.define('HAVE_ACCELERATE', 1)
74
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()
82    ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox', 'Accelerate']
83    ctx.define('HAVE_ACCELERATE', 1)
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
89  # check for required headers
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')
95
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
106  # optionally use complex.h
107  if (Options.options.enable_complex == True):
108    ctx.check(header_name='complex.h')
109
110  # check dependencies
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):
115      ctx.check_cfg(package = 'samplerate', atleast_version = '0.0.15',
116        args = '--cflags --libs', mandatory = False)
117
118  # double precision mode
119  if (Options.options.enable_double == True):
120    ctx.define('HAVE_AUBIO_DOUBLE', 1)
121  else:
122    ctx.define('HAVE_AUBIO_DOUBLE', 0)
123
124  # optional dependancies using pkg-config
125  if (Options.options.enable_fftw3 != False or Options.options.enable_fftw3f != False):
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!')
132    else:
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
142  # fftw disabled, use ooura
143  if 'HAVE_FFTW3F' in ctx.env.define_key:
144    ctx.msg('Checking for FFT implementation', 'fftw3f')
145  elif 'HAVE_FFTW3' in ctx.env.define_key:
146    ctx.msg('Checking for FFT implementation', 'fftw3')
147  elif 'HAVE_ACCELERATE' in ctx.env.define_key:
148    ctx.msg('Checking for FFT implementation', 'vDSP')
149  else:
150    ctx.msg('Checking for FFT implementation', 'ooura')
151
152  if (Options.options.enable_jack != False):
153    ctx.check_cfg(package = 'jack', atleast_version = '0.15.0',
154    args = '--cflags --libs', mandatory = False)
155
156  if (Options.options.enable_lash != False):
157    ctx.check_cfg(package = 'lash-1.0', atleast_version = '0.5.0',
158    args = '--cflags --libs', uselib_store = 'LASH', mandatory = False)
159
160  # write configuration header
161  ctx.write_config_header('src/config.h')
162
163  # add some defines used in examples
164  ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
165  ctx.define('PACKAGE', APPNAME)
166
167  # check if docbook-to-man is installed, optional
168  try:
169    ctx.find_program('docbook-to-man', var='DOCBOOKTOMAN')
170  except ctx.errors.ConfigurationError:
171    ctx.to_log('docbook-to-man was not found (ignoring)')
172
173def build(bld):
174  bld.env['VERSION'] = VERSION
175  bld.env['LIB_VERSION'] = LIB_VERSION
176
177  # add sub directories
178  bld.recurse('src')
179  from waflib import Options
180  if Options.platform != 'ios':
181      bld.recurse('examples')
182      bld.recurse('tests')
183
184  """
185  # install woodblock sound
186  bld.install_files('${PREFIX}/share/sounds/aubio/',
187      'sounds/woodblock.aiff')
188  """
189
190  bld( source = 'aubio.pc.in' )
191
192  # build manpages from sgml files
193  if bld.env['DOCBOOKTOMAN']:
194    from waflib import TaskGen
195    if 'MANDIR' not in bld.env:
196      bld.env['MANDIR'] = bld.env['PREFIX'] + '/share/man'
197    TaskGen.declare_chain(
198        name      = 'docbooktoman',
199        rule      = '${DOCBOOKTOMAN} ${SRC} > ${TGT}',
200        ext_in    = '.sgml',
201        ext_out   = '.1',
202        reentrant = False,
203        install_path =  '${MANDIR}/man1',
204    )
205    bld( source = bld.path.ant_glob('doc/*.sgml') )
206
207def shutdown(bld):
208    from waflib import Options, Logs
209    if Options.platform == 'ios':
210          msg ='aubio built for ios, contact the author for a commercial license'
211          Logs.pprint('RED', msg)
212          msg ='   Paul Brossier <piem@aubio.org>'
213          Logs.pprint('RED', msg)
Note: See TracBrowser for help on using the repository browser.