Changeset c35e701


Ignore:
Timestamp:
Apr 20, 2016, 12:54:31 PM (8 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:
5bec75d
Parents:
013d0d7
Message:

README.md: add notes about installing libaubio

File:
1 edited

Legend:

Unmodified
Added
Removed
  • README.md

    r013d0d7 rc35e701  
    7171  https://aubio.org/documentation
    7272
    73 Installation and Build Instructions
    74 -----------------------------------
     73Build Instructions
     74------------------
    7575
    7676A number of distributions already include aubio. Check your favorite package
     
    8282    ./waf configure
    8383    ./waf build
    84     sudo ./waf install
    8584
    8685If waf is not found in the directory, you can download and install it with:
     
    8988
    9089aubio compiles on Linux, Mac OS X, Cygwin, and iOS.
     90
     91Installation
     92------------
     93
     94To install aubio library and headers on your system, use:
     95
     96    sudo ./waf install
     97
     98To uninstall:
     99
     100    sudo ./waf uninstall
     101
     102If you don't have root access to install libaubio on your system, you can use
     103libaubio without installing libaubio either by setting `LD_LIBRARY_PATH`, or by
     104copying it to `~/lib`.
     105
     106On Linux, you should be able to set `LD_LIBRARY_PATH` with:
     107
     108    $ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/build/src
     109
     110On Mac OS X, a copy or a symlink can be made in `~/lib`:
     111
     112    $ mkdir -p ~/lib
     113    $ ln -sf $PWD/build/src/libaubio.4.dylib ~/lib/libaubio.4.dylib
     114
     115Note on Mac OS X systems older than El Capitan (10.11), the `DYLD_LIBRARY_PATH`
     116variable can be set as follows:
     117
     118    $ export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$PWD/build/src
    91119
    92120Credits and Publications
Note: See TracChangeset for help on using the changeset viewer.