summaryrefslogtreecommitdiff
path: root/package/libllcp
diff options
context:
space:
mode:
authorVicente Olivert Riera <Vincent.Riera@imgtec.com>2014-01-10 10:06:19 +0000
committerPeter Korsgaard <peter@korsgaard.com>2014-01-13 12:40:43 +0100
commit8b2e235743260872bbd7753a41f8cf56a628260e (patch)
tree5347764e682bae58f371b683f7a72dd9cf9d9c3e /package/libllcp
parent94dd02f5d0ce89549a82a99c56602e1c4a73bae7 (diff)
libnfc-llcp: rename to libllcp and bump version
This package has been renamed upstream to libllcp. Also, the current package we have in Buildroot fails to compile due to a version bump of it's main dependence, libnfc. A version bump is required because this package has been adapted upstream to work with libnfc-1.7.0-rc6. Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libllcp')
-rw-r--r--package/libllcp/Config.in9
-rw-r--r--package/libllcp/libllcp.mk17
2 files changed, 26 insertions, 0 deletions
diff --git a/package/libllcp/Config.in b/package/libllcp/Config.in
new file mode 100644
index 0000000000..e5b21082e5
--- /dev/null
+++ b/package/libllcp/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_LIBLLCP
+ bool "libllcp"
+ depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
+ select BR2_PACKAGE_LIBNFC
+ help
+ Library extending libnfc with support for Logical Link Control
+ Protocol.
+
+ https://code.google.com/p/libllcp/
diff --git a/package/libllcp/libllcp.mk b/package/libllcp/libllcp.mk
new file mode 100644
index 0000000000..30bbf69e65
--- /dev/null
+++ b/package/libllcp/libllcp.mk
@@ -0,0 +1,17 @@
+################################################################################
+#
+# libllcp
+#
+################################################################################
+
+LIBLLCP_VERSION = cf0c4b3c9df98851c6092c130192130c3f5a46bd
+LIBLLCP_SITE = https://libllcp.googlecode.com/git/
+LIBLLCP_SITE_METHOD = git
+LIBLLCP_DEPENDENCIES = libnfc
+# There's no ./configure in the repository, so we need to autoreconf
+LIBLLCP_AUTORECONF = YES
+LIBLLCP_INSTALL_STAGING = YES
+LIBLLCP_LICENSE = GPLv3+
+LIBLLCP_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))