homebrew-core/Formula/libssh2.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

16 lines
468 B
Ruby

require 'formula'
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