diff options
author | Roman I Khimov <khimov@altell.ru> | 2009-04-17 01:30:24 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-04-21 22:45:50 +0200 |
commit | 78d0562c92c7338e119a3b92e1a273073d6039ad (patch) | |
tree | efea38d26a48bd3c06e6ed35b9ab7f54b95bcfc3 /recipes/tunctl/tunctl.inc | |
parent | 5a1d7e7a88c6ef8ac0ca4c7034e637f831a05faf (diff) |
tunctl: new recipe, version 1.5
Tool for controlling the TUN/TAP driver in Linux.
Signed-off-by: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'recipes/tunctl/tunctl.inc')
-rw-r--r-- | recipes/tunctl/tunctl.inc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/recipes/tunctl/tunctl.inc b/recipes/tunctl/tunctl.inc new file mode 100644 index 0000000000..c9c7e95664 --- /dev/null +++ b/recipes/tunctl/tunctl.inc @@ -0,0 +1,14 @@ +DESCRIPTION = "The tunctl tool for controlling the TUN/TAP driver in Linux." +SECTION = "net" +LICENSE = "GPL" + +SRC_URI = "${SOURCEFORGE_MIRROR}/tunctl/tunctl-${PV}.tar.gz" + +do_compile() { + oe_runmake tunctl +} + +do_install() { + install -d ${D}/${sbindir} + install -m 755 tunctl ${D}/${sbindir} +} |