Last active
August 31, 2018 08:03
-
-
Save davidraedev/0febd8d2752f3e4a37fc909f7e67c615 to your computer and use it in GitHub Desktop.
homebrew install formula for sshpass 1.06
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Sshpass < Formula | |
url 'http://sourceforge.net/projects/sshpass/files/sshpass/1.06/sshpass-1.06.tar.gz' | |
homepage 'http://sourceforge.net/projects/sshpass' | |
sha256 'c6324fcee608b99a58f9870157dfa754837f8c48be3df0f5e2f3accf145dee60' | |
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
brew install https://gist.github.com/daraeman/0febd8d2752f3e4a37fc909f7e67c615/raw/586a30993d4024793cf719cdad92c6b4ed6f3ae6/sshpass.rb