c242fd3a53
Closes Homebrew/homebrew#16911. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
478 B
Ruby
16 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
|