2011-12-01 06:06:44 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libssh < Formula
|
|
|
|
homepage 'http://www.libssh.org/'
|
2013-02-05 02:43:58 +00:00
|
|
|
url 'https://red.libssh.org/attachments/download/41/libssh-0.5.4.tar.gz'
|
|
|
|
sha1 '4a372378db8fffaf28d5c79d80b2235843aa587c'
|
2011-12-01 06:06:44 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
|
|
|
|
def install
|
2012-02-22 04:48:36 +00:00
|
|
|
mkdir 'build' do
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", "..", *std_cmake_args
|
2011-12-01 06:06:44 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|