c7630f5ff4
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
16 lines
337 B
Ruby
16 lines
337 B
Ruby
require 'formula'
|
|
|
|
class Libssh < Formula
|
|
homepage 'http://www.libssh.org/'
|
|
url 'http://www.libssh.org/files/0.5/libssh-0.5.2.tar.gz'
|
|
md5 '38b67c48af7a9204660a3e08f97ceba6'
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
def install
|
|
mkdir 'build' do
|
|
system "cmake", "..", *std_cmake_args
|
|
system "make install"
|
|
end
|
|
end
|
|
end
|