libnfc-llcp: new package

This patch adds the libnfc-llcp package.

This package requires a minium libnfc version of 1.6. A separate patch has
been submitted to bump the libnfc version; that patch should be regarded as
a prerequisite for the present patch.

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Simon Dawson 2012-07-18 18:11:51 +01:00 committed by Thomas Petazzoni
parent 6d38cf8522
commit 5276cb27c0
3 changed files with 23 additions and 0 deletions

View file

@ -376,6 +376,7 @@ source "package/libftdi/Config.in"
source "package/libhid/Config.in"
source "package/libiqrf/Config.in"
source "package/libnfc/Config.in"
source "package/libnfc-llcp/Config.in"
source "package/libusb/Config.in"
source "package/libusb-compat/Config.in"
source "package/libv4l/Config.in"

View file

@ -0,0 +1,8 @@
config BR2_PACKAGE_LIBNFC_LLCP
bool "libnfc-llcp"
select BR2_PACKAGE_LIBNFC
help
Library extending libnfc with support for Logical Link Control
Protocol.
http://code.google.com/p/nfc-tools/source/browse/trunk/libnfc-llcp/

View file

@ -0,0 +1,14 @@
#############################################################
#
# libnfc-llcp
#
#############################################################
LIBNFC_LLCP_VERSION = 1090
LIBNFC_LLCP_SITE = http://nfc-tools.googlecode.com/svn/trunk/libnfc-llcp/
LIBNFC_LLCP_SITE_METHOD = svn
LIBNFC_LLCP_DEPENDENCIES = libnfc
LIBNFC_LLCP_AUTORECONF = YES
LIBNFC_LLCP_AUTORECONF_OPT = --install --force --verbose
LIBNFC_LLCP_INSTALL_STAGING = YES
$(eval $(autotools-package))