diff options
| author | Brett Koonce | 2014-09-27 09:29:48 -0700 |
|---|---|---|
| committer | Brett Koonce | 2014-09-27 11:28:42 -0700 |
| commit | 8cc50a2dc2f3459a5fcfea1720efcd2f32ed71de (patch) | |
| tree | 10978064945f1e94fbe6942cfa8058b7ac07c0c1 | |
| parent | 49a432abd6ecb8e031da1470bf23e31e5d343bf7 (diff) | |
| download | homebrew-8cc50a2dc2f3459a5fcfea1720efcd2f32ed71de.tar.bz2 | |
dnsmasq 2.72
| -rw-r--r-- | Library/Formula/dnsmasq.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/dnsmasq.rb b/Library/Formula/dnsmasq.rb index 5c8b24824..4194eed87 100644 --- a/Library/Formula/dnsmasq.rb +++ b/Library/Formula/dnsmasq.rb @@ -1,9 +1,9 @@ -require 'formula' +require "formula" class Dnsmasq < Formula - homepage 'http://www.thekelleys.org.uk/dnsmasq/doc.html' - url 'http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.71.tar.gz' - sha1 'b0a39f66557c966629a0ed9282cd87df8f409004' + homepage "http://www.thekelleys.org.uk/dnsmasq/doc.html" + url "http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.72.tar.gz" + sha1 "c2dc54b142ec5676d6e22951bc5b61863b0503fe" bottle do sha1 "96d2784aa36024ce06c727c323c211b0f278950f" => :mavericks @@ -11,12 +11,12 @@ class Dnsmasq < Formula sha1 "a65ee0871fb0dd2d037d1742ca51d38f56005bb4" => :lion end - option 'with-idn', 'Compile with IDN support' - option 'with-dnssec', 'Compile with DNSSEC support' + option "with-idn", "Compile with IDN support" + option "with-dnssec", "Compile with DNSSEC support" depends_on "libidn" if build.with? "idn" depends_on "nettle" if build.with? "dnssec" - depends_on 'pkg-config' => :build + depends_on "pkg-config" => :build def install ENV.deparallelize |
