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'
|
2014-09-03 18:43:04 +00:00
|
|
|
revision 2
|
2011-12-01 06:06:44 +00:00
|
|
|
|
2014-07-03 21:00:26 +00:00
|
|
|
bottle do
|
2014-09-03 18:51:13 +00:00
|
|
|
sha1 "84717d23f7d4e59d847bbc2b3b91a2edb9e05709" => :mavericks
|
|
|
|
sha1 "92158c3da484ae5073004c9e471bb458c61e08e3" => :mountain_lion
|
|
|
|
sha1 "bd75561291499decf22001b0ba09ae41a3089dbb" => :lion
|
2014-07-03 21:00:26 +00:00
|
|
|
end
|
|
|
|
|
2011-12-01 06:06:44 +00:00
|
|
|
depends_on 'cmake' => :build
|
2014-09-03 18:43:04 +00:00
|
|
|
depends_on 'openssl'
|
2011-12-01 06:06:44 +00:00
|
|
|
|
|
|
|
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
|