58 lines
1.5 KiB
Ruby
58 lines
1.5 KiB
Ruby
class Wolfmqtt < Formula
|
|
desc "Small, fast, portable MQTT client C implementation"
|
|
homepage "https://github.com/wolfSSL/wolfMQTT"
|
|
url "https://github.com/wolfSSL/wolfMQTT/releases/download/v1.7/wolfmqtt-1.7.0.tar.gz"
|
|
sha256 "fd9aa74e4c7ad4fec8f2d4c40ce32785b5bb55d7c013c5acc846062583f09a9c"
|
|
license "GPL-2.0-or-later"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "073807b984df8fb86ffde192cb3c0ace7c7f139d81da937e71874fcaa02e820b" => :catalina
|
|
sha256 "32e32e9f2d87974550fdc18e054f639d0a138e74aace8a2ceb639b992cdd54f1" => :mojave
|
|
sha256 "3e2a29fd675291511f203d094e235461483a7a0d8135b286c94900dd9e25f963" => :high_sierra
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/wolfSSL/wolfMQTT.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "wolfssl"
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-silent-rules
|
|
--disable-dependency-tracking
|
|
--infodir=#{info}
|
|
--mandir=#{man}
|
|
--prefix=#{prefix}
|
|
--sysconfdir=#{etc}
|
|
--enable-nonblock
|
|
--enable-mt
|
|
--enable-mqtt5
|
|
--enable-propcb
|
|
--enable-sn
|
|
]
|
|
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOT
|
|
#include <wolfmqtt/mqtt_client.h>
|
|
int main() {
|
|
MqttClient mqttClient;
|
|
return 0;
|
|
}
|
|
EOT
|
|
system ENV.cc, "test.cpp", "-L#{lib}", "-lwolfmqtt", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|