1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Introduction
------------
These are python bindings for the alsaplayer library. The intent
is to provide a set of bindings that closely mirror the C library,
leaving more complex functionality for purely python modules.
Requirements
------------
* python [http://python.org] including development headers and library
* boost [http://boost.org] with boost.python enabled
* alsaplayer [http://alsaplayer.org] including development headers and library
Building
--------
In most cases, you should be able to build everything with this command:
python setup.py build
In the event that you have headers or libraries in non-standard locations,
you can edit setup.cfg to add those directories to the appropriate
build variables.
Installation
------------
You can install the extension module by running:
python setup.py install
Note that you'll probably need to do this as root.
|