Skip to content

Instantly share code, notes, and snippets.

@stefanoverna
Created December 23, 2011 09:04
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save stefanoverna/1513663 to your computer and use it in GitHub Desktop.
Save stefanoverna/1513663 to your computer and use it in GitHub Desktop.
sshpass brew formula
require 'formula'
class Sshpass < Formula
url 'http://downloads.sourceforge.net/project/sshpass/sshpass/1.05/sshpass-1.05.tar.gz'
homepage 'http://sshpass.sourceforge.net/'
md5 'c52d65fdee0712af6f77eb2b60974ac7'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "sshpass"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment