source: doc/building.rst @ a429d1c

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5sampleryinfft+
Last change on this file since a429d1c was 5069da3, checked in by Paul Brossier <piem@piem.org>, 8 years ago

installing.rst: split and rewrite

  • Property mode set to 100644
File size: 2.2 KB
RevLine 
[5069da3]1.. highlight:: bash
2
3.. _building:
4
5Building aubio
6==============
7
8.. note::
9    To download a prebuilt version of aubio, see :ref:`download`.
10
11aubio uses `waf`_ to configure, compile, and test the source.
12A copy of waf is included in aubio tarball, so all you need is a terminal,
13a compiler, and a recent version of python installed.
14
15.. note::
16    Make sure you have all the :ref:`requirements` you want before building.
17
18Latest release
19--------------
20
21The **latest stable release** can be downloaded from https://aubio.org/download::
22
23        $ curl -O http://aubio.org/pub/aubio-0.4.3.tar.bz2
24        $ tar xf aubio-0.4.3.tar.bz2
25        $ cd aubio-0.4.3
26
27Git repository
28--------------
29
30The **latest git branch** can be obtained with::
31
32        $ git clone git://git.aubio.org/git/aubio
33        $ cd aubio
34
35The following command will fetch the correct `waf`_ version (not included in
36aubio's git)::
37
38        $ ./scripts/get_waf.sh
39
40.. note::
41
42  Windows users without `Git Bash`_ installed will want to use the following
43  commands instead:
44
45  .. code:: bash
46
47        $ curl -fsS -o waf https://waf.io/waf-1.8.22
48        $ curl -fsS -o waf.bat https://raw.githubusercontent.com/waf-project/waf/master/utils/waf.bat
49
50
51Compiling
52---------
53
54To compile the C library, examples programs, and tests, run::
55
56        $ ./waf configure
57
58Check out the available options using ``./waf configure --help``. Once
59you are done with configuration, you can start building::
60
61        $ ./waf build
62
63To install the freshly built C library and tools, simply run the following
64command::
65
66        $ sudo ./waf install
67
68.. note::
69  Windows users should simply run ``waf``, without the leading ``./``. For
70  instance:
71
72  .. code:: bash
73
74       $ waf configure build
75
76Cleaning
77--------
78
79If you wish to uninstall the files installed by the ``install`` command, use
80``uninstall``::
81
82        $ sudo ./waf uninstall
83
84To clean the source directory, use the ``clean`` command::
85
86        $ ./waf clean
87
88To also forget the options previously passed to the last ``./waf configure``
89invocation, use the ``distclean`` command::
90
91        $ ./waf distclean
92
93.. _waf: https://waf.io/
94
95.. _Git Bash: https://git-for-windows.github.io/
96
97.. toctree::
98   :maxdepth: 2
Note: See TracBrowser for help on using the repository browser.