88779ade49
Closes Homebrew/homebrew#14653.
32 lines
813 B
Ruby
32 lines
813 B
Ruby
require 'formula'
|
|
|
|
class Autossh < Formula
|
|
homepage 'http://www.harding.motd.ca/autossh/'
|
|
url 'http://www.harding.motd.ca/autossh/autossh-1.4c.tgz'
|
|
sha1 'd9a1d5a2987e7e5a444b00e63d6590936da1e1f2'
|
|
|
|
def patches
|
|
DATA
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make install"
|
|
bin.install 'rscreen'
|
|
end
|
|
end
|
|
|
|
|
|
__END__
|
|
diff --git a/rscreen b/rscreen
|
|
index f0bbced..ce232c3 100755
|
|
--- a/rscreen
|
|
+++ b/rscreen
|
|
@@ -23,4 +23,4 @@ fi
|
|
#AUTOSSH_PATH=/usr/local/bin/ssh
|
|
export AUTOSSH_POLL AUTOSSH_LOGFILE AUTOSSH_DEBUG AUTOSSH_PATH AUTOSSH_GATETIME AUTOSSH_PORT
|
|
|
|
-autossh -M 20004 -t $1 "screen -e^Zz -D -R"
|
|
+autossh -M 20004 -t $1 "screen -D -R"
|