diff options
Diffstat (limited to 'recipes/lowpan-utils')
-rw-r--r-- | recipes/lowpan-utils/lowpan-utils_git.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/recipes/lowpan-utils/lowpan-utils_git.bb b/recipes/lowpan-utils/lowpan-utils_git.bb new file mode 100644 index 0000000000..89a5e438ab --- /dev/null +++ b/recipes/lowpan-utils/lowpan-utils_git.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "LoWPAN utilities (IEEE802.15.4)" +LICENSE = "GPL" +SRCREV = "master" +SRC_URI = "git://github.com/lumag/lowpan-utils.git;protocol=git" +DEPENDS = "libnl bison-native flex-native" +PR = "r4" + +S = "${WORKDIR}/git" +PACKAGES += "${PN}-tests-dbg" +PACKAGES += "${PN}-tests" +FILES_${PN} = "${sbindir}/iz ${sbindir}/izconfig \ + ${bindir}/izchat ${bindir}/izlisten ${sbindir}/izcoordinator \ + ${sbindir}/izattach" +FILES_${PN}-tests = "${libexecdir}/zigbee ${libdir}/python*/site-packages" +FILES_${PN}-tests-dbg = "${libexecdir}/zigbee/.debug" + +inherit autotools + +do_stage() { + autotools_stage_all +} |