aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Rudd2011-01-19 15:47:02 +1000
committerAdam Vandenberg2011-03-22 11:39:55 -0700
commit010ffa694f8eabd55feb5c90f82d0f936174ff3a (patch)
tree73536f73a10d426148a444368e9d286fbffff1a4 /Library/Formula
parent6ab54246002591f212c28841b783057417f37ef5 (diff)
downloadhomebrew-010ffa694f8eabd55feb5c90f82d0f936174ff3a.tar.bz2
mosquitto 0.9.3
Mosquitto is an MQTT broker. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mosquitto.rb15
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