aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mosquitto.rb
blob: ffe23fd1f874869eb898b4c6ce008a620008af72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Mosquitto < Formula
  url 'http://mosquitto.org/files/source/mosquitto-0.9.3.tar.gz'
  homepage 'http://mosquitto.org'
  md5 'e40040533067a22be783af14d8f16a46'

  depends_on 'cmake' => :build

  def patches
    # Fixes man page installation: in man/CMakeLists.txt,
    # the parentheses around MANDEST should be braces.
    { :p1 => "https://bitbucket.org/oojah/mosquitto/changeset/fc5c83daefb0/raw/mosquitto-fc5c83daefb0.diff" }
  end

  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end