Skip to content

Instantly share code, notes, and snippets.

@EntropyWorks
Forked from M-Barnett/sshpass.rb
Created June 4, 2017 20:21
Show Gist options
  • Save EntropyWorks/1ff518db6f03758b29525d76f7bbebc2 to your computer and use it in GitHub Desktop.
Save EntropyWorks/1ff518db6f03758b29525d76f7bbebc2 to your computer and use it in GitHub Desktop.

Revisions

  1. @M-Barnett M-Barnett revised this gist Jul 29, 2016. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions sshpass.rb
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,9 @@
    require 'formula'

    class Sshpass < Formula
    url 'http://sourceforge.net/projects/sshpass/files/sshpass/1.05/sshpass-1.05.tar.gz'
    url 'http://sourceforge.net/projects/sshpass/files/sshpass/1.06/sshpass-1.06.tar.gz'
    homepage 'http://sourceforge.net/projects/sshpass'
    sha256 'c3f78752a68a0c3f62efb3332cceea0c8a1f04f7cf6b46e00ec0c3000bc8483e'
    sha256 'c6324fcee608b99a58f9870157dfa754837f8c48be3df0f5e2f3accf145dee60'

    def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
  2. @lalyos lalyos revised this gist Jun 19, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion sshpass.rb
    Original file line number Diff line number Diff line change
    @@ -3,7 +3,7 @@
    class Sshpass < Formula
    url 'http://sourceforge.net/projects/sshpass/files/sshpass/1.05/sshpass-1.05.tar.gz'
    homepage 'http://sourceforge.net/projects/sshpass'
    sha256 'c52d65fdee0712af6f77eb2b60974ac7'
    sha256 'c3f78752a68a0c3f62efb3332cceea0c8a1f04f7cf6b46e00ec0c3000bc8483e'

    def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
  3. @lalyos lalyos revised this gist Jun 19, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion sshpass.rb
    Original file line number Diff line number Diff line change
    @@ -3,7 +3,7 @@
    class Sshpass < Formula
    url 'http://sourceforge.net/projects/sshpass/files/sshpass/1.05/sshpass-1.05.tar.gz'
    homepage 'http://sourceforge.net/projects/sshpass'
    md5 'c52d65fdee0712af6f77eb2b60974ac7'
    sha256 'c52d65fdee0712af6f77eb2b60974ac7'

    def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
  4. @lalyos lalyos created this gist Jun 19, 2015.
    17 changes: 17 additions & 0 deletions sshpass.rb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    require 'formula'

    class Sshpass < Formula
    url 'http://sourceforge.net/projects/sshpass/files/sshpass/1.05/sshpass-1.05.tar.gz'
    homepage 'http://sourceforge.net/projects/sshpass'
    md5 'c52d65fdee0712af6f77eb2b60974ac7'

    def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
    "--prefix=#{prefix}"
    system "make install"
    end

    def test
    system "sshpass"
    end
    end