From 6b2cdda8bcbc7d1fca633f0572cc47fc010e33c8 Mon Sep 17 00:00:00 2001 From: Andy Piper Date: Tue, 21 Aug 2012 10:18:49 +0100 Subject: mosquitto 1.0.2 Update to main mosquitto 1.0.2 release Add dependency on homebrew OpenSSL Add launchctl startup plist file Closes #14481. Signed-off-by: Adam Vandenberg --- Library/Formula/mosquitto.rb | 75 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 72 insertions(+), 3 deletions(-) (limited to 'Library') diff --git a/Library/Formula/mosquitto.rb b/Library/Formula/mosquitto.rb index 8295864a5..c36775266 100644 --- a/Library/Formula/mosquitto.rb +++ b/Library/Formula/mosquitto.rb @@ -2,17 +2,86 @@ require 'formula' class Mosquitto < Formula homepage 'http://mosquitto.org/' - url 'http://mosquitto.org/files/source/mosquitto-0.15.tar.gz' - md5 '7ae0ac38f1f379578ab5530e5dc7269e' + url 'http://mosquitto.org/files/source/mosquitto-1.0.2.tar.gz' + sha1 '544112232d08abf6dc60f28c9a85f4d88206d0f2' + depends_on 'pkg-config' => :build depends_on 'cmake' => :build + # mosquitto requires OpenSSL >=1.0 for TLS support + depends_on 'openssl' def install + openssl = Formula.factory('openssl') + + # specify brew-supplied OpenSSL libraries and includes + inreplace "CMakeLists.txt", "set (OPENSSL_INCLUDE_DIR \"\")", "set (OPENSSL_INCLUDE_DIR \"#{openssl.include}\")\nset (OPENSSL_LIBRARIES \"#{openssl.lib}\")" + system "cmake", ".", *std_cmake_args system "make install" + + # Create the working directory under var + (var+'mosquitto').mkpath + + plist_path.write startup_plist + plist_path.chmod 0644 end def test - system "#{bin}/mosquitto -h > /dev/null ; [ $? -eq 3 ]" + system "#{sbin}/mosquitto -h > /dev/null ; [ $? -eq 3 ]" + end + + def caveats + return <<-EOD.undent + mosquitto has been installed with a default configuration file. + You can make changes to the configuration by editing + #{etc}/mosquitto/mosquitto.conf + + If this is your first install, automatically load on login with: + mkdir -p ~/Library/LaunchAgents + cp #{plist_path} ~/Library/LaunchAgents/ + launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename} + + If this is an upgrade and you already have the #{plist_path.basename} loaded: + launchctl unload -w ~/Library/LaunchAgents/#{plist_path.basename} + cp #{plist_path} ~/Library/LaunchAgents/ + launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename} + + Start the broker manually by running: + mosquitto -c #{etc}/mosquitto/mosquitto.conf + + Python client bindings can be installed from the Python Package Index + pip install mosquitto + + Javascript client is available at + http://mosquitto.org/js/ + EOD end + + def startup_plist + return <<-EOS + + + + + Label + #{plist_name} + ProgramArguments + + #{HOMEBREW_PREFIX}/sbin/mosquitto + -c + #{etc}/mosquitto/mosquitto.conf + + RunAtLoad + + KeepAlive + + UserName + #{`whoami`.chomp} + WorkingDirectory + #{var}/mosquitto + + +EOS + end + end -- cgit v1.2.3