package/libnspr: add pkg-config file

Some packages use pkg-config to check for libnspr.

Add our own .pc file (vampirised from Debian).

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yann E. MORIN 2012-08-21 19:07:03 +02:00 committed by Thomas Petazzoni
parent 5886b6f15c
commit 22afea3002
2 changed files with 26 additions and 0 deletions

View File

@ -16,4 +16,20 @@ LIBNSPR_CONF_OPT = --host=$(GNU_HOST_NAME)
LIBNSPR_CONF_OPT += --$(if $(BR2_ARCH_IS_64),en,dis)able-64bit
LIBNSPR_CONF_OPT += --$(if $(BR2_INET_IPV6),en,dis)able-ipv6
define LIBNSPR_INSTALL_STAGING_PC
$(INSTALL) -D -m 0644 $(TOPDIR)/package/libnspr/nspr.pc.in \
$(STAGING_DIR)/usr/lib/pkgconfig/nspr.pc
$(SED) 's/@VERSION@/$(LIBNSPR_VERSION)/g;' \
$(STAGING_DIR)/usr/lib/pkgconfig/nspr.pc
endef
LIBNSPR_POST_INSTALL_STAGING_HOOKS += LIBNSPR_INSTALL_STAGING_PC
define LIBNSPR_INSTALL_TARGET_PC
$(INSTALL) -D -m 0644 $(TOPDIR)/package/libnspr/nspr.pc.in \
$(TARGET_DIR)/usr/lib/pkgconfig/nspr.pc
$(SED) 's/@VERSION@/$(LIBNSPR_VERSION)/g;' \
$(TARGET_DIR)/usr/lib/pkgconfig/nspr.pc
endef
LIBNSPR_POST_INSTALL_TARGET_HOOKS += LIBNSPR_INSTALL_TARGET_PC
$(eval $(autotools-package))

View File

@ -0,0 +1,10 @@
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include/nspr
Name: NSPR
Description: The Netscape Portable Runtime
Version: @VERSION@
Libs: -L${exec_prefix}/lib -lplds4 -lplc4 -lnspr4 -lpthread -ldl
Cflags: -I${prefix}/include/nspr