blob: 93897dc4858f50201e70fc2d61843e7d1095d35f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
require "formula"
class Dropbear < Formula
homepage "https://matt.ucc.asn.au/dropbear/dropbear.html"
url "https://matt.ucc.asn.au/dropbear/releases/dropbear-2014.66.tar.bz2"
mirror "https://dropbear.nl/mirror/releases/dropbear-2014.66.tar.bz2"
sha1 "793f5f1bb465b3c55e795d607932e8b21c130e95"
bottle do
cellar :any
sha1 "b7fc99831d70610973f7978fdbfdd170c562c93b" => :yosemite
sha1 "1b52833468598772dc72b08defe5bfe8d592f9a1" => :mavericks
sha1 "3665d3c991cc865f6d2de2b7b3268ed6040a2a26" => :mountain_lion
end
head do
url "https://github.com/mkj/dropbear.git"
depends_on "automake" => :build
depends_on "autoconf" => :build
end
def install
if build.head?
system "autoconf"
system "autoheader"
end
system "./configure","--prefix=#{prefix}", "--enable-pam", "--enable-zlib",
"--enable-bundled-libtom", "--sysconfdir=#{etc}/dropbear"
system "make"
ENV.deparallelize
system "make", "install"
end
test do
system "dbclient", "-h"
system "dropbearkey", "-t", "ecdsa", "-f", "testec521", "-s", "521"
assert File.exist?("testec521")
end
end
|