homebrew-core/Formula/libssh2.rb

17 lines
478 B
Ruby

require 'formula'
class Libssh2 < Formula
homepage 'http://www.libssh2.org/'
url 'http://www.libssh2.org/download/libssh2-1.4.3.tar.gz'
sha1 'c27ca83e1ffeeac03be98b6eef54448701e044b0'
def install
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
"--with-openssl",
"--with-libz"
system "make install"
end
end