2011-12-01 06:06:44 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libssh < Formula
|
|
|
|
homepage 'http://www.libssh.org/'
|
2014-04-11 04:44:55 +00:00
|
|
|
url 'https://red.libssh.org/attachments/download/87/libssh-0.6.3.tar.xz'
|
|
|
|
sha1 '8189255e0f684d36b7ca62739fa0cd5f1030a467'
|
2011-12-01 06:06:44 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
|
|
|
|
def install
|
2014-04-11 04:44:55 +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
|