source: python/aubio/wscript_build @ 6017f94

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

python/aubio: update

  • Property mode set to 100644
File size: 579 bytes
Line 
1# vim:set syntax=python:
2
3pyaubio = bld.new_task_gen(name = 'python-aubio', 
4  features = 'c cshlib pyext',
5  source = '../../swig/aubio.i',
6  add_objects = 'sndfileio',
7  target = '_aubiowrapper',
8  use = ['aubio'],
9  uselib = ['SNDFILE'],
10  swig_flags = '-python -Wall',
11  includes = '. ../../src ../../examples')
12pyaubio.install_path = '${PYTHONDIR}/${PACKAGE}'
13
14# install python files
15bld.install_files('${PYTHONDIR}/${PACKAGE}/', bld.path.ant_glob('**/*.py'))
16# install swig generated python file
17bld.install_files('${PYTHONDIR}/${PACKAGE}/', '../../swig/aubiowrapper.py')
Note: See TracBrowser for help on using the repository browser.