5c25c4dce5
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.2.tar.gz'
|
|
sha1 '7fc084254dabe14a9bc90fa3d569faa7ee943e19'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--with-openssl",
|
|
"--with-libz"
|
|
system "make install"
|
|
end
|
|
end
|