[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] | 13 | import sys |
---|
| 14 | |
---|
[000b090] | 15 | APPNAME = 'aubio' |
---|
[5820107] | 16 | |
---|
[6b14351] | 17 | # source VERSION |
---|
[5820107] | 18 | for l in open('VERSION').readlines(): exec (l.strip()) |
---|
| 19 | |
---|
[6b14351] | 20 | VERSION = '.'.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] | 26 | LIB_VERSION = '.'.join ([str(x) for x in [ |
---|
| 27 | LIBAUBIO_LT_CUR, |
---|
| 28 | LIBAUBIO_LT_REV, |
---|
| 29 | LIBAUBIO_LT_AGE]]) |
---|
[e565c649] | 30 | |
---|
[46378b3] | 31 | top = '.' |
---|
| 32 | out = 'build' |
---|
[000b090] | 33 | |
---|
[6b14351] | 34 | def 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] | 49 | def options(ctx): |
---|
[a93dab3] | 50 | add_option_enable_disable(ctx, 'fftw3f', default = False, |
---|
| 51 | help_str = 'compile with fftw3f instead of ooura (recommended)', |
---|
| 52 | help_disable_str = 'do not compile with fftw3f') |
---|
| 53 | add_option_enable_disable(ctx, 'fftw3', default = False, |
---|
| 54 | help_str = 'compile with fftw3 instead of ooura', |
---|
| 55 | help_disable_str = 'do not compile with fftw3') |
---|
| 56 | add_option_enable_disable(ctx, 'complex', default = False, |
---|
| 57 | help_str ='compile with C99 complex', |
---|
| 58 | help_disable_str = 'do not use C99 complex (default)' ) |
---|
| 59 | add_option_enable_disable(ctx, 'jack', default = None, |
---|
| 60 | help_str = 'compile with jack (auto)', |
---|
| 61 | help_disable_str = 'disable jack support') |
---|
| 62 | add_option_enable_disable(ctx, 'sndfile', default = None, |
---|
| 63 | help_str = 'compile with sndfile (auto)', |
---|
| 64 | help_disable_str = 'disable sndfile') |
---|
| 65 | add_option_enable_disable(ctx, 'avcodec', default = None, |
---|
| 66 | help_str = 'compile with libavcodec (auto)', |
---|
| 67 | help_disable_str = 'disable libavcodec') |
---|
| 68 | add_option_enable_disable(ctx, 'samplerate', default = None, |
---|
| 69 | help_str = 'compile with samplerate (auto)', |
---|
| 70 | help_disable_str = 'disable samplerate') |
---|
[d9d1010] | 71 | add_option_enable_disable(ctx, 'rubberband', default = None, |
---|
| 72 | help_str = 'compile with rubberband (auto)', |
---|
| 73 | help_disable_str = 'disable rubberband') |
---|
[a93dab3] | 74 | add_option_enable_disable(ctx, 'memcpy', default = True, |
---|
| 75 | help_str = 'use memcpy hacks (default)', |
---|
| 76 | help_disable_str = 'do not use memcpy hacks') |
---|
| 77 | add_option_enable_disable(ctx, 'double', default = False, |
---|
| 78 | help_str = 'compile in double precision mode', |
---|
| 79 | help_disable_str = 'compile in single precision mode (default)') |
---|
[a3de4be] | 80 | add_option_enable_disable(ctx, 'fat', default = False, |
---|
| 81 | help_str = 'build fat binaries (darwin only)', |
---|
| 82 | help_disable_str = 'do not build fat binaries (default)') |
---|
[0309a22] | 83 | add_option_enable_disable(ctx, 'accelerate', default = None, |
---|
| 84 | help_str = 'use Accelerate framework (darwin only) (auto)', |
---|
| 85 | help_disable_str = 'do not use Accelerate framework') |
---|
[cc81763] | 86 | add_option_enable_disable(ctx, 'apple-audio', default = None, |
---|
| 87 | help_str = 'use CoreFoundation (darwin only) (auto)', |
---|
| 88 | help_disable_str = 'do not use CoreFoundation framework') |
---|
[f0ce36a1] | 89 | add_option_enable_disable(ctx, 'atlas', default = None, |
---|
| 90 | help_str = 'use Atlas library (auto)', |
---|
| 91 | help_disable_str = 'do not use Atlas library') |
---|
[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] | 104 | def 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 | |
---|
[bef979a] | 110 | # check for common headers |
---|
| 111 | ctx.check(header_name='stdlib.h') |
---|
| 112 | ctx.check(header_name='stdio.h') |
---|
| 113 | ctx.check(header_name='math.h') |
---|
| 114 | ctx.check(header_name='string.h') |
---|
| 115 | ctx.check(header_name='limits.h') |
---|
[f334300] | 116 | ctx.check(header_name='stdarg.h') |
---|
[d746ef8] | 117 | ctx.check(header_name='getopt.h', mandatory = False) |
---|
[06cf47d] | 118 | ctx.check(header_name='unistd.h', mandatory = False) |
---|
[bef979a] | 119 | |
---|
[004b431] | 120 | target_platform = sys.platform |
---|
[a93dab3] | 121 | if ctx.options.target_platform: |
---|
| 122 | target_platform = ctx.options.target_platform |
---|
| 123 | ctx.env['DEST_OS'] = target_platform |
---|
| 124 | |
---|
[ae36035] | 125 | if ctx.env.CC_NAME != 'msvc': |
---|
[a341685] | 126 | ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra'] |
---|
| 127 | else: |
---|
[5bba662] | 128 | ctx.env.CFLAGS += ['/W4', '/MD'] |
---|
| 129 | ctx.env.CFLAGS += ['/D_CRT_SECURE_NO_WARNINGS'] |
---|
[a341685] | 130 | |
---|
[70a304e] | 131 | ctx.check_cc(lib='m', uselib_store='M', mandatory=False) |
---|
| 132 | |
---|
[06dba46] | 133 | if target_platform not in ['win32', 'win64']: |
---|
| 134 | ctx.env.CFLAGS += ['-fPIC'] |
---|
| 135 | else: |
---|
| 136 | ctx.define('HAVE_WIN_HACKS', 1) |
---|
| 137 | ctx.env['cshlib_PATTERN'] = 'lib%s.dll' |
---|
[a93dab3] | 138 | |
---|
[a3de4be] | 139 | if target_platform == 'darwin' and ctx.options.enable_fat: |
---|
[a93dab3] | 140 | ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64'] |
---|
| 141 | ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64'] |
---|
[da1709f] | 142 | MINSDKVER="10.4" |
---|
| 143 | ctx.env.CFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ] |
---|
| 144 | ctx.env.LINKFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ] |
---|
[9209c79] | 145 | |
---|
| 146 | if target_platform in [ 'darwin', 'ios', 'iosimulator']: |
---|
[cc81763] | 147 | if (ctx.options.enable_apple_audio != False): |
---|
| 148 | ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox'] |
---|
| 149 | ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1) |
---|
| 150 | ctx.define('HAVE_SINK_APPLE_AUDIO', 1) |
---|
[0309a22] | 151 | if (ctx.options.enable_accelerate != False): |
---|
| 152 | ctx.define('HAVE_ACCELERATE', 1) |
---|
| 153 | ctx.env.FRAMEWORK += ['Accelerate'] |
---|
[a93dab3] | 154 | |
---|
| 155 | if target_platform in [ 'ios', 'iosimulator' ]: |
---|
| 156 | MINSDKVER="6.1" |
---|
| 157 | ctx.env.CFLAGS += ['-std=c99'] |
---|
[536bf70] | 158 | if (ctx.options.enable_apple_audio != False): |
---|
[cc81763] | 159 | ctx.define('HAVE_AUDIO_UNIT', 1) |
---|
| 160 | #ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox'] |
---|
[a93dab3] | 161 | if target_platform == 'ios': |
---|
| 162 | DEVROOT = "/Applications/Xcode.app/Contents" |
---|
| 163 | DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer" |
---|
[e11ce489] | 164 | SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS.sdk" % locals() |
---|
[94b16497] | 165 | ctx.env.CFLAGS += [ '-fembed-bitcode' ] |
---|
[7aa4aaa] | 166 | ctx.env.CFLAGS += [ '-arch', 'arm64' ] |
---|
[a93dab3] | 167 | ctx.env.CFLAGS += [ '-arch', 'armv7' ] |
---|
| 168 | ctx.env.CFLAGS += [ '-arch', 'armv7s' ] |
---|
[7aa4aaa] | 169 | ctx.env.LINKFLAGS += [ '-arch', 'arm64' ] |
---|
[a93dab3] | 170 | ctx.env.LINKFLAGS += ['-arch', 'armv7'] |
---|
| 171 | ctx.env.LINKFLAGS += ['-arch', 'armv7s'] |
---|
| 172 | ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ] |
---|
| 173 | ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ] |
---|
| 174 | else: |
---|
| 175 | DEVROOT = "/Applications/Xcode.app/Contents" |
---|
| 176 | DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer" |
---|
[e11ce489] | 177 | SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals() |
---|
[a93dab3] | 178 | ctx.env.CFLAGS += [ '-arch', 'i386' ] |
---|
| 179 | ctx.env.CFLAGS += [ '-arch', 'x86_64' ] |
---|
| 180 | ctx.env.LINKFLAGS += ['-arch', 'i386'] |
---|
| 181 | ctx.env.LINKFLAGS += ['-arch', 'x86_64'] |
---|
| 182 | ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ] |
---|
| 183 | ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ] |
---|
| 184 | ctx.env.CFLAGS += [ '-isysroot' , SDKROOT] |
---|
| 185 | ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT] |
---|
| 186 | |
---|
[fb5838a] | 187 | if target_platform == 'emscripten': |
---|
| 188 | import os.path |
---|
| 189 | ctx.env.CFLAGS += [ '-I' + os.path.join(os.environ['EMSCRIPTEN'], 'system', 'include') ] |
---|
| 190 | ctx.env.CFLAGS += ['-Oz'] |
---|
| 191 | ctx.env.cprogram_PATTERN = "%s.js" |
---|
| 192 | if (ctx.options.enable_atlas != True): |
---|
| 193 | ctx.options.enable_atlas = False |
---|
| 194 | |
---|
[a93dab3] | 195 | # check support for C99 __VA_ARGS__ macros |
---|
| 196 | check_c99_varargs = ''' |
---|
[0318cc1] | 197 | #include <stdio.h> |
---|
| 198 | #define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__) |
---|
| 199 | ''' |
---|
[a93dab3] | 200 | |
---|
| 201 | if ctx.check_cc(fragment = check_c99_varargs, |
---|
| 202 | type='cstlib', |
---|
[413d4bf] | 203 | msg = 'Checking for C99 __VA_ARGS__ macro', |
---|
| 204 | mandatory = False): |
---|
[a93dab3] | 205 | ctx.define('HAVE_C99_VARARGS_MACROS', 1) |
---|
| 206 | |
---|
[06c6d7d] | 207 | # show a message about enable_double status |
---|
[a93dab3] | 208 | if (ctx.options.enable_double == True): |
---|
[06c6d7d] | 209 | ctx.msg('Checking for size of smpl_t', 'double') |
---|
| 210 | ctx.msg('Checking for size of lsmp_t', 'long double') |
---|
[a93dab3] | 211 | else: |
---|
[06c6d7d] | 212 | ctx.msg('Checking for size of smpl_t', 'float') |
---|
| 213 | ctx.msg('Checking for size of lsmp_t', 'double') |
---|
[a93dab3] | 214 | |
---|
| 215 | # optionally use complex.h |
---|
| 216 | if (ctx.options.enable_complex == True): |
---|
| 217 | ctx.check(header_name='complex.h') |
---|
[06c6d7d] | 218 | else: |
---|
| 219 | ctx.msg('Checking if complex.h is enabled', 'no') |
---|
[a93dab3] | 220 | |
---|
| 221 | # check for fftw3 |
---|
| 222 | if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False): |
---|
| 223 | # one of fftwf or fftw3f |
---|
| 224 | if (ctx.options.enable_fftw3f != False): |
---|
| 225 | ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0', |
---|
[795fcd9] | 226 | args = '--cflags --libs', |
---|
| 227 | mandatory = ctx.options.enable_fftw3f) |
---|
[a93dab3] | 228 | if (ctx.options.enable_double == True): |
---|
[795fcd9] | 229 | ctx.msg('Warning', |
---|
| 230 | 'fftw3f enabled, but compiling in double precision!') |
---|
[a93dab3] | 231 | else: |
---|
[795fcd9] | 232 | # fftw3f disabled, take most sensible one according to |
---|
| 233 | # enable_double |
---|
[a93dab3] | 234 | if (ctx.options.enable_double == True): |
---|
| 235 | ctx.check_cfg(package = 'fftw3', atleast_version = '3.0.0', |
---|
[795fcd9] | 236 | args = '--cflags --libs', mandatory = |
---|
| 237 | ctx.options.enable_fftw3) |
---|
[a93dab3] | 238 | else: |
---|
| 239 | ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0', |
---|
[795fcd9] | 240 | args = '--cflags --libs', |
---|
| 241 | mandatory = ctx.options.enable_fftw3) |
---|
[a93dab3] | 242 | ctx.define('HAVE_FFTW3', 1) |
---|
| 243 | |
---|
| 244 | # fftw not enabled, use vDSP or ooura |
---|
| 245 | if 'HAVE_FFTW3F' in ctx.env.define_key: |
---|
| 246 | ctx.msg('Checking for FFT implementation', 'fftw3f') |
---|
| 247 | elif 'HAVE_FFTW3' in ctx.env.define_key: |
---|
| 248 | ctx.msg('Checking for FFT implementation', 'fftw3') |
---|
| 249 | elif 'HAVE_ACCELERATE' in ctx.env.define_key: |
---|
| 250 | ctx.msg('Checking for FFT implementation', 'vDSP') |
---|
[36f954a] | 251 | else: |
---|
[a93dab3] | 252 | ctx.msg('Checking for FFT implementation', 'ooura') |
---|
| 253 | |
---|
| 254 | # check for libsndfile |
---|
| 255 | if (ctx.options.enable_sndfile != False): |
---|
| 256 | ctx.check_cfg(package = 'sndfile', atleast_version = '1.0.4', |
---|
[795fcd9] | 257 | args = '--cflags --libs', |
---|
| 258 | mandatory = ctx.options.enable_sndfile) |
---|
[a93dab3] | 259 | |
---|
| 260 | # check for libsamplerate |
---|
| 261 | if (ctx.options.enable_samplerate != False): |
---|
| 262 | ctx.check_cfg(package = 'samplerate', atleast_version = '0.0.15', |
---|
[795fcd9] | 263 | args = '--cflags --libs', |
---|
| 264 | mandatory = ctx.options.enable_samplerate) |
---|
[a93dab3] | 265 | |
---|
[d9d1010] | 266 | # check for librubberband |
---|
| 267 | if (ctx.options.enable_rubberband != False): |
---|
[8e1328f] | 268 | ctx.check_cfg(package = 'rubberband', atleast_version = '1.3', |
---|
[d9d1010] | 269 | args = '--cflags --libs', |
---|
| 270 | mandatory = ctx.options.enable_rubberband) |
---|
| 271 | |
---|
[a93dab3] | 272 | # check for jack |
---|
| 273 | if (ctx.options.enable_jack != False): |
---|
[eb99982] | 274 | ctx.check_cfg(package = 'jack', |
---|
[795fcd9] | 275 | args = '--cflags --libs', |
---|
| 276 | mandatory = ctx.options.enable_jack) |
---|
[a93dab3] | 277 | |
---|
| 278 | # check for libav |
---|
| 279 | if (ctx.options.enable_avcodec != False): |
---|
| 280 | ctx.check_cfg(package = 'libavcodec', atleast_version = '54.35.0', |
---|
[795fcd9] | 281 | args = '--cflags --libs', uselib_store = 'AVCODEC', |
---|
| 282 | mandatory = ctx.options.enable_avcodec) |
---|
[a93dab3] | 283 | ctx.check_cfg(package = 'libavformat', atleast_version = '52.3.0', |
---|
[795fcd9] | 284 | args = '--cflags --libs', uselib_store = 'AVFORMAT', |
---|
| 285 | mandatory = ctx.options.enable_avcodec) |
---|
[a93dab3] | 286 | ctx.check_cfg(package = 'libavutil', atleast_version = '52.3.0', |
---|
[795fcd9] | 287 | args = '--cflags --libs', uselib_store = 'AVUTIL', |
---|
| 288 | mandatory = ctx.options.enable_avcodec) |
---|
[a93dab3] | 289 | ctx.check_cfg(package = 'libavresample', atleast_version = '1.0.1', |
---|
[795fcd9] | 290 | args = '--cflags --libs', uselib_store = 'AVRESAMPLE', |
---|
| 291 | mandatory = ctx.options.enable_avcodec) |
---|
[eb68991] | 292 | if all ( 'HAVE_' + i in ctx.env |
---|
[549928e] | 293 | for i in ['AVCODEC', 'AVFORMAT', 'AVUTIL', 'AVRESAMPLE'] ): |
---|
| 294 | ctx.define('HAVE_LIBAV', 1) |
---|
| 295 | ctx.msg('Checking for all libav libraries', 'yes') |
---|
| 296 | else: |
---|
| 297 | ctx.msg('Checking for all libav libraries', 'not found', color = 'YELLOW') |
---|
[a93dab3] | 298 | |
---|
[5158c22] | 299 | ctx.define('HAVE_WAVREAD', 1) |
---|
[52ca8a3] | 300 | ctx.define('HAVE_WAVWRITE', 1) |
---|
[5158c22] | 301 | |
---|
[f0ce36a1] | 302 | # use ATLAS |
---|
| 303 | if (ctx.options.enable_atlas != False): |
---|
| 304 | ctx.check(header_name = 'atlas/cblas.h', mandatory = ctx.options.enable_atlas) |
---|
| 305 | #ctx.check(lib = 'lapack', uselib_store = 'LAPACK', mandatory = ctx.options.enable_atlas) |
---|
| 306 | ctx.check(lib = 'cblas', uselib_store = 'BLAS', mandatory = ctx.options.enable_atlas) |
---|
| 307 | |
---|
[a93dab3] | 308 | # use memcpy hacks |
---|
| 309 | if (ctx.options.enable_memcpy == True): |
---|
| 310 | ctx.define('HAVE_MEMCPY_HACKS', 1) |
---|
| 311 | |
---|
| 312 | # write configuration header |
---|
| 313 | ctx.write_config_header('src/config.h') |
---|
| 314 | |
---|
[06c6d7d] | 315 | # the following defines will be passed as arguments to the compiler |
---|
| 316 | # instead of being written to src/config.h |
---|
| 317 | |
---|
[a93dab3] | 318 | # add some defines used in examples |
---|
| 319 | ctx.define('AUBIO_PREFIX', ctx.env['PREFIX']) |
---|
| 320 | ctx.define('PACKAGE', APPNAME) |
---|
| 321 | |
---|
[06c6d7d] | 322 | # double precision mode |
---|
| 323 | if (ctx.options.enable_double == True): |
---|
| 324 | ctx.define('HAVE_AUBIO_DOUBLE', 1) |
---|
| 325 | |
---|
[a33d406] | 326 | if (ctx.options.enable_docs != False): |
---|
| 327 | # check if txt2man is installed, optional |
---|
| 328 | try: |
---|
| 329 | ctx.find_program('txt2man', var='TXT2MAN') |
---|
| 330 | except ctx.errors.ConfigurationError: |
---|
| 331 | ctx.to_log('txt2man was not found (ignoring)') |
---|
[000b090] | 332 | |
---|
[a33d406] | 333 | # check if doxygen is installed, optional |
---|
| 334 | try: |
---|
| 335 | ctx.find_program('doxygen', var='DOXYGEN') |
---|
| 336 | except ctx.errors.ConfigurationError: |
---|
| 337 | ctx.to_log('doxygen was not found (ignoring)') |
---|
[52a25e5] | 338 | |
---|
[7800335] | 339 | # check if sphinx-build is installed, optional |
---|
| 340 | try: |
---|
| 341 | ctx.find_program('sphinx-build', var='SPHINX') |
---|
| 342 | except ctx.errors.ConfigurationError: |
---|
| 343 | ctx.to_log('sphinx-build was not found (ignoring)') |
---|
| 344 | |
---|
[6ed0f4e] | 345 | def build(bld): |
---|
[985a5d1] | 346 | bld.env['VERSION'] = VERSION |
---|
| 347 | bld.env['LIB_VERSION'] = LIB_VERSION |
---|
| 348 | |
---|
| 349 | # add sub directories |
---|
| 350 | bld.recurse('src') |
---|
| 351 | if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']: |
---|
| 352 | bld.recurse('examples') |
---|
| 353 | bld.recurse('tests') |
---|
| 354 | |
---|
| 355 | bld( source = 'aubio.pc.in' ) |
---|
| 356 | |
---|
[52a25e5] | 357 | # build manpages from txt files using txt2man |
---|
[403e9dd] | 358 | if bld.env['TXT2MAN']: |
---|
[985a5d1] | 359 | from waflib import TaskGen |
---|
| 360 | if 'MANDIR' not in bld.env: |
---|
| 361 | bld.env['MANDIR'] = bld.env['PREFIX'] + '/share/man' |
---|
[403e9dd] | 362 | rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`' |
---|
| 363 | rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}' |
---|
| 364 | rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual' |
---|
| 365 | rule_str += ' -s 1 ${SRC} > ${TGT}' |
---|
[985a5d1] | 366 | TaskGen.declare_chain( |
---|
[403e9dd] | 367 | name = 'txt2man', |
---|
| 368 | rule = rule_str, |
---|
| 369 | ext_in = '.txt', |
---|
[985a5d1] | 370 | ext_out = '.1', |
---|
| 371 | reentrant = False, |
---|
| 372 | install_path = '${MANDIR}/man1', |
---|
| 373 | ) |
---|
[403e9dd] | 374 | bld( source = bld.path.ant_glob('doc/*.txt') ) |
---|
[985a5d1] | 375 | |
---|
[52a25e5] | 376 | # build documentation from source files using doxygen |
---|
| 377 | if bld.env['DOXYGEN']: |
---|
| 378 | bld( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null', |
---|
| 379 | source = 'doc/web.cfg', |
---|
[7f35041] | 380 | cwd = 'doc') |
---|
[52a25e5] | 381 | bld.install_files( '${PREFIX}' + '/share/doc/libaubio-doc', |
---|
| 382 | bld.path.ant_glob('doc/web/html/**'), |
---|
| 383 | cwd = bld.path.find_dir ('doc/web'), |
---|
| 384 | relative_trick = True) |
---|
[7800335] | 385 | |
---|
| 386 | # build documentation from source files using sphinx-build |
---|
| 387 | if bld.env['SPHINX']: |
---|
| 388 | bld( name = 'sphinx', rule = 'make html', |
---|
| 389 | source = ['doc/conf.py'] + bld.path.ant_glob('doc/**.rst'), |
---|
| 390 | cwd = 'doc') |
---|
| 391 | bld.install_files( '${PREFIX}' + '/share/doc/libaubio-doc/sphinx', |
---|
| 392 | bld.path.ant_glob('doc/_build/html/**'), |
---|
| 393 | cwd = bld.path.find_dir ('doc/_build/html'), |
---|
| 394 | relative_trick = True) |
---|
[50d56cc] | 395 | |
---|
[30250de] | 396 | def shutdown(bld): |
---|
[985a5d1] | 397 | from waflib import Logs |
---|
| 398 | if bld.options.target_platform in ['ios', 'iosimulator']: |
---|
| 399 | msg ='building for %s, contact the author for a commercial license' % bld.options.target_platform |
---|
| 400 | Logs.pprint('RED', msg) |
---|
| 401 | msg =' Paul Brossier <piem@aubio.org>' |
---|
| 402 | Logs.pprint('RED', msg) |
---|
[b4d1ba1] | 403 | |
---|
| 404 | def dist(ctx): |
---|
[99d8cbb] | 405 | ctx.excl = ' **/.waf-1* **/*~ **/*.pyc **/*.swp **/*.swo **/*.swn **/.lock-w* **/.git*' |
---|
[b4d1ba1] | 406 | ctx.excl += ' **/build/*' |
---|
[99d8cbb] | 407 | ctx.excl += ' doc/_build' |
---|
| 408 | ctx.excl += ' python/demos_*' |
---|
[22dd9dc] | 409 | ctx.excl += ' **/python/gen **/python/build **/python/dist' |
---|
[981e7082] | 410 | ctx.excl += ' **/python/ext/config.h' |
---|
[99d8cbb] | 411 | ctx.excl += ' **/python/lib/aubio/_aubio.so' |
---|
| 412 | ctx.excl += ' **.egg-info' |
---|
[22dd9dc] | 413 | ctx.excl += ' **/**.zip **/**.tar.bz2' |
---|
[a93dab3] | 414 | ctx.excl += ' **/doc/full/* **/doc/web/*' |
---|
[b4d1ba1] | 415 | ctx.excl += ' **/python/*.db' |
---|
| 416 | ctx.excl += ' **/python.old/*' |
---|
[981e7082] | 417 | ctx.excl += ' **/python/*/*.old' |
---|
[172b1fe] | 418 | ctx.excl += ' **/python/tests/sounds' |
---|
[7b2d740] | 419 | ctx.excl += ' **/**.asc' |
---|
[5e544f1] | 420 | ctx.excl += ' **/dist*' |
---|
[73aac2a] | 421 | ctx.excl += ' **/.DS_Store' |
---|
| 422 | ctx.excl += ' **/.travis.yml' |
---|
[5e544f1] | 423 | ctx.excl += ' **/.landscape.yml' |
---|
| 424 | ctx.excl += ' **/.appveyor.yml' |
---|