diff options
author | Mike Fiore <mfiore@multitech.com> | 2013-04-10 13:13:54 -0500 |
---|---|---|
committer | Mike Fiore <mfiore@multitech.com> | 2013-04-10 13:13:54 -0500 |
commit | 37f4b5a103a5f0b0ba8a0ccedffad9f4ec1d7914 (patch) | |
tree | 78d581541720870d672b795daae1e4bd6bb3a60f | |
parent | cb1ab19007e9d132555588d7b16da6666245cddd (diff) |
autossh: init
-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 +} |