ladspa-lgv-plugins
Copyright (c) 2009 Luis Garrido <luisgarrido@users.sourceforge.net>

------------------------------------------------------------------------------
PLUGINS
------------------------------------------------------------------------------

monomix: a plugin that combines the left and right channels of an 
stereo audio input into a dual mono output. The plugin offers different preset 
combinations (L+R, L-R, L, R) and one custom mode. This plugin can be used to 
eliminate, isolate or enhance different channels on play-along recordings.

------------------------------------------------------------------------------
RUNTIME DEPENDENCIES
------------------------------------------------------------------------------

The C standard library.

------------------------------------------------------------------------------
BUILD DEPENDENCIES
------------------------------------------------------------------------------

You just need a C compiler and the C standard library headers.

------------------------------------------------------------------------------
HOW TO GET THE SOURCE CODE
------------------------------------------------------------------------------

1) Download a release tarball from the project repository at 
http://ladspa-lgv-plugins.sourceforge.net and extract it. 
     
2) For the latest version check the project out from its SVN repository:
svn co https://ladspa-lgv.svn.sourceforge.net/svnroot/ladspa-lgv

------------------------------------------------------------------------------
HOW TO BUILD AND INSTALL
------------------------------------------------------------------------------

1) From a tarball:

./configure
make
make install (perform this step as root)

2) From SVN (you will need the autotools toolchain installed (autoconf, automake, 
libtool):

./autogen.sh
./configure
make
make install (perform this step as root)

------------------------------------------------------------------------------
HOW TO BUILD AN RPM PACKAGE
------------------------------------------------------------------------------

You need a rpm building toolchain in place. Here is a nice tutorial about it:
http://www.g-loaded.eu/2006/04/05/how-to-build-rpm-packages-on-fedora/

Then you have to perform the following steps:

1) From a tarball:

- Extract the tarball:
tar xf ladspa-lgv-plugins-0.1.tar.gz

- Configure the package to generate the spec file:
cd ladspa-lgv-plugins-0.1
./configure

- Copy the tarball to the SOURCES directory:
cp ../ladspa-lgv-plugins-0.1.tar.gz ~/rpmbuild/SOURCES

- Build the package:
rpmbuild -ba --target i686 --clean ladspa-lgv-plugins.spec

If everything goes well you should have a ready to install RPM at 
~/rpmbuild/RPMS/i686

2) From SVN:

- Configure the package:
./autogen.sh
./configure

- Generate a tarball:
make dist

- Copy the tarball to the SOURCES directory:
cp ladspa-lgv-plugins-0.1.tar.gz ~/rpmbuild/SOURCES

- Build the package:
rpmbuild -ba --target i686 --clean ladspa-lgv-plugins.spec

- If everything goes well you should have a ready to install RPM at 
~/rpmbuild/RPMS/i686
