Formula for libssh2.

This commit is contained in:
Adam Vandenberg 2009-09-30 14:54:25 -07:00 committed by Max Howell
parent 71349613b3
commit bb67a4adc1

16
Formula/libssh2.rb Normal file
View file

@ -0,0 +1,16 @@
require 'brewkit'
class Libssh2 <Formula
url 'http://www.libssh2.org/download/libssh2-1.2.1.tar.gz'
homepage 'http://www.libssh2.org/'
md5 '4ee0197947a3b8a4472328c346e1a0e4'
def install
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
"--with-openssl",
"--with-libz"
system "make install"
end
end