Changes between Version 3 and Version 4 of Build


Ignore:
Timestamp:
Mar 29, 2008, 1:13:12 PM (16 years ago)
Author:
Paul Brossier
Comment:

add some basic build instructions

Legend:

Unmodified
Added
Removed
Modified
  • Build

    v3 v4  
    11= Build =
    22
    3 This page lists the instructions to build the aubio library and the different tools. See the [wiki:Download Download] page to fetch the latest version of the source code.
     3This page lists the instructions to build the aubio library and tools. See the [wiki:Download Download] page to fetch the latest version of pre-compiled packages and source code.
     4
     5As much as possible, using the [source:aubio latest source code] version should be preferred to using the latest release.
    46
    57== Dependencies ==
     
    1618 - [http://www.alsa-project.org ALSA], for midi output from aubionotes
    1719 - [http://www.swig.org Swig], to build modules for languages supported by SWIG (perl, java and many more)
    18  - [http://python.org Python], to build and use the python scripts provided in the [source:python python directory].
     20 - [http://python.org Python], to build and use the python scripts provided in the [source:aubio/python python directory].
    1921
    2022'''Note''': on a debian system, the required dependencies can be obtained using:
     
    2224# apt-get build-dep aubio
    2325}}}
     26
     27== Compiling ==
     28
     29Once you have all the dependencies installed, you should be able to run the following from within the aubio source directory:
     30{{{
     31./bootstrap # optional from a release tarball
     32./configure
     33make
     34}}}
     35
     36Several configurations options are available. See:
     37{{{
     38./configure --help
     39}}}
     40
     41If you need to install aubio on your system, run the following as root:
     42{{{
     43make install
     44}}}