homebrew-core/Formula/libssh.rb
Stefan b626ea2e28 libssh 0.5.4
Closes Homebrew/homebrew#17592.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-02-05 08:59:56 -06:00

16 lines
361 B
Ruby

require 'formula'
class Libssh < Formula
homepage 'http://www.libssh.org/'
url 'https://red.libssh.org/attachments/download/41/libssh-0.5.4.tar.gz'
sha1 '4a372378db8fffaf28d5c79d80b2235843aa587c'
depends_on 'cmake' => :build
def install
mkdir 'build' do
system "cmake", "..", *std_cmake_args
system "make install"
end
end
end