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

class Mosquitto < Formula
  homepage 'http://mosquitto.org/'
  url 'http://mosquitto.org/files/source/mosquitto-0.15.tar.gz'
  md5 '7ae0ac38f1f379578ab5530e5dc7269e'

  depends_on 'cmake' => :build

  def install
    system "cmake", ".", *std_cmake_args
    system "make install"
  end

  def test
    system "#{bin}/mosquitto -h > /dev/null ; [ $? -eq 3 ]"
  end
end