blob: 437a4530eb040524fe295abeca78e010a91c18e2 (
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.14.4.tar.gz'
md5 '88750338c2096671c01cf7e461d5c06d'
depends_on 'cmake' => :build
def install
system "cmake #{std_cmake_parameters} ."
system "make install"
end
def test
system "#{bin}/mosquitto -h > /dev/null ; [ $? -eq 3 ]"
end
end
|