diff options
-rw-r--r-- | multitech/recipes/autossh/autossh_1.4c.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/multitech/recipes/autossh/autossh_1.4c.bb b/multitech/recipes/autossh/autossh_1.4c.bb new file mode 100644 index 0000000..d1a7452 --- /dev/null +++ b/multitech/recipes/autossh/autossh_1.4c.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "Keeps ssh tunnels alive" +HOMEPAGE = "http://www.harding.motd.ca/autossh" +LICENSE = "GPL" +SECTION = "console/utils" +PRIORITY = "optional" + +PR = "r1" + +SRC_URI = "http://www.harding.motd.ca/autossh/autossh-1.4c.tgz" +SRC_URI[md5sum] = "26520eea934f296be0783dabe7fcfd28" + +INSANE_SKIP_autossh = "True" + +inherit autotools + +do_install() { + install -d ${D}/usr/bin + install ${S}/autossh ${D}/usr/bin/autossh +} |