diff options
| author | Adam Rudd | 2011-01-19 15:47:02 +1000 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-22 11:39:55 -0700 |
| commit | 010ffa694f8eabd55feb5c90f82d0f936174ff3a (patch) | |
| tree | 73536f73a10d426148a444368e9d286fbffff1a4 /Library | |
| parent | 6ab54246002591f212c28841b783057417f37ef5 (diff) | |
| download | homebrew-010ffa694f8eabd55feb5c90f82d0f936174ff3a.tar.bz2 | |
mosquitto 0.9.3
Mosquitto is an MQTT broker.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/mosquitto.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/mosquitto.rb b/Library/Formula/mosquitto.rb new file mode 100644 index 000000000..4efadc12f --- /dev/null +++ b/Library/Formula/mosquitto.rb @@ -0,0 +1,15 @@ +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 install + ENV.deparallelize + system "cmake . #{std_cmake_parameters}" + system "make install" + end +end |
