Formula for libssh2.
This commit is contained in:
parent
71349613b3
commit
bb67a4adc1
1 changed files with 16 additions and 0 deletions
16
Formula/libssh2.rb
Normal file
16
Formula/libssh2.rb
Normal 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
|
Loading…
Reference in a new issue