Changeset d41bc4d for python


Ignore:
Timestamp:
Jul 10, 2012, 1:06:11 AM (12 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
dbf47c6
Parents:
f4493f4
Message:

wscript, /wscript_build: use ctx to match latest waf docs

Location:
python
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/aubio/wscript_build

    rf4493f4 rd41bc4d  
    11# vim:set syntax=python:
    22
    3 pyaubio = bld.new_task_gen(name = 'python-aubio',
     3pyaubio = ctx.new_task_gen(name = 'python-aubio',
    44  features = 'c cshlib pyext',
    55  source = '../../swig/aubio.i',
     
    1313
    1414# install python files
    15 bld.install_files('${PYTHONDIR}/${PACKAGE}/', bld.path.ant_glob('**/*.py'))
     15ctx.install_files('${PYTHONDIR}/${PACKAGE}/', ctx.path.ant_glob('**/*.py'))
    1616# install swig generated python file
    17 bld.install_files('${PYTHONDIR}/${PACKAGE}/', '../../swig/aubiowrapper.py')
     17ctx.install_files('${PYTHONDIR}/${PACKAGE}/', '../../swig/aubiowrapper.py')
  • python/wscript_build

    rf4493f4 rd41bc4d  
    11# vim:set syntax=python:
    22
    3 bld.add_subdirs('aubio')
     3ctx.add_subdirs('aubio')
    44# install headers
    55for file in ['aubiocut', 'aubiopitch']:
    6   bld.install_as('${PREFIX}/bin/' + file, file, chmod = 0755)
     6  ctx.install_as('${PREFIX}/bin/' + file, file, chmod = 0755)
Note: See TracChangeset for help on using the changeset viewer.