homebrew-core/Formula/sslh.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

34 lines
1 KiB
Ruby

class Sslh < Formula
desc "Forward connections based on first data packet sent by client"
homepage "http://www.rutschle.net/tech/sslh.shtml"
stable do
url "http://www.rutschle.net/tech/sslh-v1.17.tar.gz"
sha256 "4f3589ed36d8a21581268d53055240eee5e5adf02894a2ca7a6c9022f24b582a"
# fixes `make install`, fixed in HEAD
patch do
url "https://github.com/yrutschle/sslh/commit/7c35ef8528d47b97894a6495275b57dc1ae3f8c7.diff"
sha256 "a6f8e1c3f9776d7344ea839de1d8a40e9925101528bd3beee50a0c60c62872cf"
end
end
bottle do
cellar :any
sha256 "45ba9e8ef45233919decee90e7f764ee1272b010c6ab0ae54fa509531cd60e0e" => :yosemite
sha256 "7896dfcd03335687ddd1232f1226bc5149ddd5cf8062423f398a6328ade6519b" => :mavericks
sha256 "2a712be56b116244717fb4e414846b6b9373bf2b0482b764b2142096cffbac18" => :mountain_lion
end
head "https://github.com/yrutschle/sslh.git"
depends_on "libconfig"
def install
ENV.j1
system "make", "install", "PREFIX=#{prefix}"
end
test do
system sbin/"sslh", "-V"
end
end