homebrew-core/Formula/libssh.rb
Aris Adamantiadis 90d50ab492 libssh 0.5.3
Closes Homebrew/homebrew#16553.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-12-16 22:51:09 -06:00

16 lines
346 B
Ruby

require 'formula'
class Libssh < Formula
homepage 'http://www.libssh.org/'
url 'http://www.libssh.org/files/0.5/libssh-0.5.3.tar.gz'
sha1 '63f5f9e7d8b8e936048a51998a6f9be0e86866a7'
depends_on 'cmake' => :build
def install
mkdir 'build' do
system "cmake", "..", *std_cmake_args
system "make install"
end
end
end