]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package: Add libiqrf package
authorMarek Belisko <marek.belisko@open-nandra.com>
Wed, 18 May 2011 16:08:27 +0000 (18:08 +0200)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 26 Jun 2011 22:48:13 +0000 (00:48 +0200)
Libiqrf is library written in C which implement specific iqrf
protocol to communicate with iqrf usb devices (http://iqrf.org).

[Peter: select libusb, fix Config.in indentation]
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/Config.in
package/libiqrf/Config.in [new file with mode: 0644]
package/libiqrf/libiqrf.mk [new file with mode: 0644]

index 85d50ec83f1aad3f07070f7dbe97155723687611..8f1f030ebc1b214c26a253b77d241c78ba52d16e 100644 (file)
@@ -299,6 +299,7 @@ source "package/libaio/Config.in"
 source "package/libraw1394/Config.in"
 source "package/tslib/Config.in"
 source "package/libhid/Config.in"
+source "package/libiqrf/Config.in"
 source "package/libusb/Config.in"
 source "package/libusb-compat/Config.in"
 source "package/python-serial/Config.in"
diff --git a/package/libiqrf/Config.in b/package/libiqrf/Config.in
new file mode 100644 (file)
index 0000000..aa25010
--- /dev/null
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_LIBIQRF
+       bool "libiqrf"
+       select BR2_PACKAGE_LIBUSB
+       help
+         This library implement specific protocol
+         which is used for communicating with iqrf devices
+         (http://iqrf.org) over usb. For usb access is used
+         libusb library.
+
+         https://github.com/nandra/libiqrf
diff --git a/package/libiqrf/libiqrf.mk b/package/libiqrf/libiqrf.mk
new file mode 100644 (file)
index 0000000..e3c4bb1
--- /dev/null
@@ -0,0 +1,14 @@
+#############################################################
+#
+# libiqrf library
+#
+#############################################################
+
+LIBIQRF_VERSION = v0.1.0
+LIBIQRF_SITE = git://github.com/nandra/libiqrf.git
+LIBIQRF_INSTALL_STAGING = YES
+
+LIBIQRF_DEPENDENCIES = libusb
+
+$(eval $(call AUTOTARGETS,package,libiqrf))
+