emqx 5.0.11 (new formula)

Closes #113988.

Signed-off-by: Rui Chen <rui@chenrui.dev>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Ivan Dyachkov 2022-09-13 20:06:35 +02:00 committed by BrewTestBot
parent d6bda094c2
commit a9f5d9fb13
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 47 additions and 0 deletions

47
Formula/emqx.rb Normal file
View File

@ -0,0 +1,47 @@
class Emqx < Formula
desc "MQTT broker for IoT"
homepage "https://www.emqx.io/"
url "https://github.com/emqx/emqx/archive/refs/tags/v5.0.11.tar.gz"
sha256 "5b797f768961abccf9ea0050613c02b7d1fc1d3877306d592e72c64a8d95588b"
license "Apache-2.0"
head "https://github.com/emqx/emqx.git", branch: "master"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "cmake" => :build
depends_on "coreutils" => :build
# emqx cannot be built with Erlang/OTP 25 as of v5.0.11,
# but the support is in the works and is coming soon
depends_on "erlang@24" => :build
depends_on "freetds" => :build
depends_on "libtool" => :build
depends_on "openssl@3"
uses_from_macos "curl" => :build
uses_from_macos "unzip" => :build
uses_from_macos "zip" => :build
on_linux do
depends_on "ncurses"
depends_on "zlib"
end
def install
ENV["PKG_VSN"] = version.to_s
touch(".prepare")
system "make", "emqx-rel"
prefix.install Dir["_build/emqx/rel/emqx/*"]
rm %W[
#{bin}/emqx.cmd
#{bin}/emqx_ctl.cmd
#{bin}/no_dot_erlang.boot
]
end
test do
exec "ln", "-s", testpath, "data"
exec bin/"emqx", "start"
system bin/"emqx_ctl", "status"
system bin/"emqx", "stop"
end
end