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 32 33 34 35 36
|
Installation should be as simple as doing a ./configure;make install
Use ./configure --prefix=/path/to/install to change the default install
location of /usr/local. I install alsaplayer in my /opt tree so I configure it
as follows:
./configure --prefix=/opt
The alsaplayer binary will then be placed in /opt/bin after the make install.
(it is in /usr/local/bin by default). For a complete list of configure options
run the configure script with --help
If you have questions about the install phase feel free to email me at:
andy@alsaplayer.org
Installing from CVS
===================
If you have a copy of alsaplayer checked out from the CVS, you should run
the bootstrap script to create the autogenerated files. After this step you
should run configure, and then run make to compile it.
Installing over an existing version
===================================
Since the various plugin API's are still in flux it might be that newer
versions plugins are not compatible with the versions you have currently
installed. It is therefore best to erase everything under
${prefix}/lib/alsaplayer (i.e. /usr/local/lib/alsaplayer) if you get
errors about invalid versions. If AlsaPlayer exits prematurely with
signal 7 (Bus error) the above might also help.
|