aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-04-04 08:36:13 -0700
committerAdam Vandenberg2014-04-04 08:36:20 -0700
commit53be305f09f16f69a365e77e28eb37afe931b28a (patch)
treede26eb1c41d51e2a78cfb1f81945aeab60ba1ecd /Library/Formula
parentc538db712046c173de31871393673d74484e6eaf (diff)
downloadhomebrew-53be305f09f16f69a365e77e28eb37afe931b28a.tar.bz2
mosquitto: c-ares is a runtime dep
Closes #28126.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mosquitto.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/Library/Formula/mosquitto.rb b/Library/Formula/mosquitto.rb
index dba56b539..49d31fb6e 100644
--- a/Library/Formula/mosquitto.rb
+++ b/Library/Formula/mosquitto.rb
@@ -1,9 +1,9 @@
-require 'formula'
+require "formula"
class Mosquitto < Formula
- homepage 'http://mosquitto.org/'
- url 'http://mosquitto.org/files/source/mosquitto-1.3.1.tar.gz'
- sha1 'dcba02c12dffa27a0e76e68f88de21fb5f7de29d'
+ homepage "http://mosquitto.org/"
+ url "http://mosquitto.org/files/source/mosquitto-1.3.1.tar.gz"
+ sha1 "dcba02c12dffa27a0e76e68f88de21fb5f7de29d"
bottle do
sha1 "2145cfe117359dddcdef529738790fe7728834ec" => :mavericks
@@ -11,19 +11,19 @@ class Mosquitto < Formula
sha1 "d3a130d012732ca2a3b78720dd235fe19b286bcc" => :lion
end
- depends_on 'pkg-config' => :build
- depends_on 'cmake' => :build
- depends_on 'c-ares' => :build
+ depends_on "pkg-config" => :build
+ depends_on "cmake" => :build
+ depends_on "c-ares"
# mosquitto requires OpenSSL >=1.0 for TLS support
- depends_on 'openssl'
+ depends_on "openssl"
def install
system "cmake", ".", *std_cmake_args
system "make install"
# Create the working directory
- (var/'mosquitto').mkpath
+ (var/"mosquitto").mkpath
end
test do