homebrew-core/Formula/libssh2.rb

17 lines
468 B
Ruby
Raw Normal View History

require 'formula'
2009-09-30 21:54:25 +00:00
class Libssh2 <Formula
2009-12-17 19:58:06 +00:00
url 'http://www.libssh2.org/download/libssh2-1.2.2.tar.gz'
2009-09-30 21:54:25 +00:00
homepage 'http://www.libssh2.org/'
2009-12-17 19:58:06 +00:00
md5 'fa8d9cd425bdd62f57244fc61fb54da7'
2009-09-30 21:54:25 +00:00
def install
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
"--with-openssl",
"--with-libz"
system "make install"
end
end