LADSPA caps plugins
http://quitte.de/dsp/
No description set
- Sources inherited from project multimedia:libs
- Devel package for openSUSE:Factory
-
4
derived packages
- Links to openSUSE:Factory / ladspa-caps
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout home:smarty12:multimedia/ladspa-caps && cd $_
- Create Badge
Refresh
Refresh
Source Files
Sources could not be expanded: conflict in file ladspa-caps.spec
Comments 1
The building process doesn't insert polynomials.o in caps.so, and, as so, under linking it fails with a message about "/usr/lib64/ladspa/caps.so: undefined symbol: _ZN3DSP10Polynomial5one53Ef"
To fix this: a) patch dsp/polynomials:
--- a/dsp/polynomials.cc.orig 2014-02-01 09:14:06.000000000 -0200 +++ a/dsp/polynomials.cc 2023-10-16 14:23:34.113933536 -0300 @@ -28,7 +28,7 @@ 02111-1307, USA or point your web browser to http://www.gnu.org. */
-#include "../basics.h" +#include "basics.h"
namespace DSP {
b) add to %prep session: ln -s dsp/polynomials.cc polynomials.cc
This bug was affecting 3 packages I build locally: octave, audacity and tenacity.
Regards.