blob: 1cd0a5f81b4cf4b558d478eab0746ae55b019f56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|