gnu: emacs-consult: Fix grammar.
[jackhill/guix/guix.git] / gnu / packages / patches / clucene-pkgconfig.patch
1 Taken from the Debian package.
2
3 From 7be4a19b76d98260cf95040a47935f854a4ba7a4 Mon Sep 17 00:00:00 2001
4 From: Valentin Rusu <kde@rusu.info>
5 Date: Sat, 17 Dec 2011 13:47:58 +0100
6 Subject: [PATCH] Fix .pc file by adding clucene-shared library
7
8 ---
9 src/core/libclucene-core.pc.cmake | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12 --- a/src/core/libclucene-core.pc.cmake
13 +++ b/src/core/libclucene-core.pc.cmake
14 @@ -6,6 +6,6 @@ includedir=${prefix}/include:${prefix}/i
15 Name: libclucene
16 Description: CLucene - a C++ search engine, ported from the popular Apache Lucene
17 Version: @CLUCENE_VERSION_MAJOR@.@CLUCENE_VERSION_MINOR@.@CLUCENE_VERSION_REVISION@.@CLUCENE_VERSION_PATCH@
18 -Libs: -L${prefix}/@LIB_DESTINATION@/ -lclucene-core
19 +Libs: -L${prefix}/@LIB_DESTINATION@/ -lclucene-core -lclucene-shared
20 Cflags: -I${prefix}/include -I${prefix}/include/CLucene/ext
21 ~