diff options
Diffstat (limited to 'recipes/batmand/batmand.inc')
-rw-r--r-- | recipes/batmand/batmand.inc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes/batmand/batmand.inc b/recipes/batmand/batmand.inc new file mode 100644 index 0000000000..cb99cf0d74 --- /dev/null +++ b/recipes/batmand/batmand.inc @@ -0,0 +1,28 @@ +DESCRIPTION = "Routing protocol daemon for multi-hop ad-hoc mesh networks." +SECTION = "console/network" +PRIORITY = "optional" +LICENSE = "GPL" +HOMEPAGE = "http://www.open-mesh.net/" + +INC_PR = "r1" + +RDEPENDS = "kernel-module-tun" + +SRC_URI = "http://downloads.open-mesh.net/batman/stable/sources/batman/batman-${PV}.tar.gz \ + file://makefile-fix.patch;patch=1 \ + " + +S = "${WORKDIR}/batman-${PV}" + +do_compile() { + oe_runmake +} + +do_stage() { + : +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 batmand ${D}${bindir} +} |