aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libssh2.rb
blob: 506f0f1a885b02b087d2cc347b93ff409cc98270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Libssh2 <Formula
  url 'http://www.libssh2.org/download/libssh2-1.2.2.tar.gz'
  homepage 'http://www.libssh2.org/'
  md5 'fa8d9cd425bdd62f57244fc61fb54da7'

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