6424c06376
Since version 0.6, libcodec2 switched buildsystem from autotools to cmake. The patches in the libcodec2 directory were removed because they were only relevant to the autotools build, but another patch was added to fix the codec2.pc file being installed. For the cmake package unittests are disabled by default. The download site is changed to http://files.freedv.org/codec2. An option is added to be able to install examples to target. Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com> [Thomas: switch to 0.7, add patch to fix .pc file.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
685 B
Diff
21 lines
685 B
Diff
Fix includedir in codec2.pc.in
|
|
|
|
The template file codec2.pc.in contains the wrong path to the header
|
|
files: they are installed in /usr/include/codec2 and not /usr/include/
|
|
directly.
|
|
|
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
|
|
Index: b/codec2.pc.in
|
|
===================================================================
|
|
--- a/codec2.pc.in
|
|
+++ b/codec2.pc.in
|
|
@@ -1,6 +1,6 @@
|
|
prefix=@CMAKE_INSTALL_PREFIX@
|
|
libdir=@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@
|
|
-includedir=@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_INCLUDEDIR@/
|
|
+includedir=@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_INCLUDEDIR@/codec2
|
|
|
|
Name: codec2
|
|
Description: A speech codec for 2400 bit/s and below
|