* [Buildroot] [buildroot v2] Add libiqrf package.
@ 2011-05-18 16:08 Marek Belisko
2011-06-26 22:49 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: Marek Belisko @ 2011-05-18 16:08 UTC (permalink / raw)
To: buildroot
Libiqrf is library written in C which implement specific iqrf
protocol to communicate with iqrf usb devices (http://iqrf.org).
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
---
package/Config.in | 1 +
package/libiqrf/Config.in | 13 +++++++++++++
package/libiqrf/libiqrf.mk | 14 ++++++++++++++
3 files changed, 28 insertions(+), 0 deletions(-)
create mode 100644 package/libiqrf/Config.in
create mode 100644 package/libiqrf/libiqrf.mk
diff --git a/package/Config.in b/package/Config.in
index 5e48ab7..d5039b6 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -298,6 +298,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
index 0000000..a95c4d9
--- /dev/null
+++ b/package/libiqrf/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_LIBIQRF
+ bool "libiqrf"
+ depends on 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
index 0000000..e3c4bb1
--- /dev/null
+++ b/package/libiqrf/libiqrf.mk
@@ -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))
+
--
1.7.4.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [buildroot v2] Add libiqrf package.
2011-05-18 16:08 [Buildroot] [buildroot v2] Add libiqrf package Marek Belisko
@ 2011-06-26 22:49 ` Peter Korsgaard
0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2011-06-26 22:49 UTC (permalink / raw)
To: buildroot
>>>>> "Marek" == Marek Belisko <marek.belisko@open-nandra.com> writes:
Marek> Libiqrf is library written in C which implement specific iqrf
Marek> protocol to communicate with iqrf usb devices (http://iqrf.org).
Thanks, committed with minor tweaks.
Marek> Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Marek> ---
Marek> package/Config.in | 1 +
Marek> package/libiqrf/Config.in | 13 +++++++++++++
Marek> package/libiqrf/libiqrf.mk | 14 ++++++++++++++
Marek> 3 files changed, 28 insertions(+), 0 deletions(-)
Marek> create mode 100644 package/libiqrf/Config.in
Marek> create mode 100644 package/libiqrf/libiqrf.mk
Marek> diff --git a/package/Config.in b/package/Config.in
Marek> index 5e48ab7..d5039b6 100644
Marek> --- a/package/Config.in
Marek> +++ b/package/Config.in
Marek> @@ -298,6 +298,7 @@ source "package/libaio/Config.in"
Marek> source "package/libraw1394/Config.in"
Marek> source "package/tslib/Config.in"
Marek> source "package/libhid/Config.in"
Marek> +source "package/libiqrf/Config.in"
Marek> source "package/libusb/Config.in"
Marek> source "package/libusb-compat/Config.in"
Marek> source "package/python-serial/Config.in"
Marek> diff --git a/package/libiqrf/Config.in b/package/libiqrf/Config.in
Marek> new file mode 100644
Marek> index 0000000..a95c4d9
Marek> --- /dev/null
Marek> +++ b/package/libiqrf/Config.in
Marek> @@ -0,0 +1,13 @@
Marek> +config BR2_PACKAGE_LIBIQRF
Marek> + bool "libiqrf"
Marek> + depends on BR2_PACKAGE_LIBUSB
These lines should be indented using <tab> rather than spaces. We
normally use 'select' rather than 'depends on' for libraries.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-06-26 22:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-18 16:08 [Buildroot] [buildroot v2] Add libiqrf package Marek Belisko
2011-06-26 22:49 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox