homebrew-core/Formula/nanomsg.rb
2019-10-17 19:36:34 +02:00

39 lines
1.2 KiB
Ruby

class Nanomsg < Formula
desc "Socket library in C"
homepage "https://nanomsg.org/"
url "https://github.com/nanomsg/nanomsg/archive/1.1.5.tar.gz"
sha256 "218b31ae1534ab897cb5c419973603de9ca1a5f54df2e724ab4a188eb416df5a"
head "https://github.com/nanomsg/nanomsg.git"
bottle do
sha256 "81cd453e3fdf65da66a54fda36c84248a1eb923ac92125fd14bdf68989aeb9b7" => :catalina
sha256 "95609047c54b0207587db3a5b3cc8985b35fc922fe8785c63d4d2a44a78ff57f" => :mojave
sha256 "11390e904a94e60865186a846af14565b379ec84942a9bc512ba4e5e3ea7ec85" => :high_sierra
sha256 "95192ebc59926ff064d7f4cff5ebf9037c7549af61d2f1c23375827c91b88282" => :sierra
end
depends_on "cmake" => :build
def install
system "cmake", *std_cmake_args
system "make"
system "make", "install"
end
test do
bind = "tcp://127.0.0.1:8000"
pid = fork do
exec "#{bin}/nanocat --rep --bind #{bind} --format ascii --data home"
end
sleep 2
begin
output = shell_output("#{bin}/nanocat --req --connect #{bind} --format ascii --data brew")
assert_match /home/, output
ensure
Process.kill("SIGINT", pid)
Process.wait(pid)
end
end
end