source: python/aubio/wscript_build @ 6107f4c

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

use waf as new build system

  • Property mode set to 100644
File size: 550 bytes
Line 
1pyaubio = bld.new_task_gen(name = 'python-aubio',
2  features = 'cc cshlib pyext',
3  source = '../../swig/aubio.i',
4  target = '_aubiowrapper',
5  uselib_local = ['aubio', 'aubioext'],
6  swig_flags = '-python -Wall',
7  includes = '. ../../src ../../ext')
8pyaubio.install_path = '${PYTHONDIR}/${PACKAGE}'
9
10# install python files
11for file in bld.path.ant_glob('**/*.py').split():
12  bld.install_as('${PYTHONDIR}/${PACKAGE}/' + file, file)
13# install swig generated python file
14bld.install_files('${PYTHONDIR}/${PACKAGE}/', '../../swig/aubiowrapper.py')
Note: See TracBrowser for help on using the repository browser.