summaryrefslogtreecommitdiffstats
path: root/package/libnfc-llcp
diff options
context:
space:
mode:
authorSimon Dawson <spdawson@gmail.com>2012-07-18 18:11:51 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-07-20 09:42:06 +0200
commit5276cb27c0e9a2a0326148ab6198c827b6a72c8a (patch)
tree70bcfe8ccd5b57ae141842f328687fb533a4bf47 /package/libnfc-llcp
parent6d38cf852248764b633750d210f71cac983ec451 (diff)
downloadbuildroot-novena-5276cb27c0e9a2a0326148ab6198c827b6a72c8a.tar.gz
buildroot-novena-5276cb27c0e9a2a0326148ab6198c827b6a72c8a.zip
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>
Diffstat (limited to 'package/libnfc-llcp')
-rw-r--r--package/libnfc-llcp/Config.in8
-rw-r--r--package/libnfc-llcp/libnfc-llcp.mk14
2 files changed, 22 insertions, 0 deletions
diff --git a/package/libnfc-llcp/Config.in b/package/libnfc-llcp/Config.in
new file mode 100644
index 000000000..d59976a69
--- /dev/null
+++ b/package/libnfc-llcp/Config.in
@@ -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/
diff --git a/package/libnfc-llcp/libnfc-llcp.mk b/package/libnfc-llcp/libnfc-llcp.mk
new file mode 100644
index 000000000..57821c1cb
--- /dev/null
+++ b/package/libnfc-llcp/libnfc-llcp.mk
@@ -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))