aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libssh2.rb
blob: 4e6bf9528dd99d2bc4f00f2f0d0ee1112dbe5842 (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.7.tar.gz'
  homepage 'http://www.libssh2.org/'
  md5 'a5d78344886f1282e4008c09bf568076'

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