diff options
| author | Chloe Stars | 2015-02-14 12:49:30 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2015-02-16 17:10:17 +0000 |
| commit | a43da6d794f834a96da1cd1612e9eb196cfa650d (patch) | |
| tree | c432783dabe9c9aade0ab8dd20736103f6c6681a | |
| parent | 5789a20129d154794217ac9d8a1e65201d64cbc6 (diff) | |
| download | homebrew-a43da6d794f834a96da1cd1612e9eb196cfa650d.tar.bz2 | |
znc 1.6.0
Closes #36811.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/znc.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/znc.rb b/Library/Formula/znc.rb index 3630569bd..de6d789cb 100644 --- a/Library/Formula/znc.rb +++ b/Library/Formula/znc.rb @@ -2,8 +2,8 @@ require "formula" class Znc < Formula homepage "http://wiki.znc.in/ZNC" - url "http://znc.in/releases/archive/znc-1.4.tar.gz" - sha1 "6dafcf12b15fdb95eac5b427c8507c1095e904b4" + url "http://znc.in/releases/archive/znc-1.6.0.tar.gz" + sha1 "548d31fa63d50494bdf4b1d3c0f43a8ceda66849" head do url "https://github.com/znc/znc.git" @@ -11,7 +11,6 @@ class Znc < Formula depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build - depends_on "openssl" end bottle do @@ -23,8 +22,10 @@ class Znc < Formula option "enable-debug", "Compile ZNC with --enable-debug" depends_on "pkg-config" => :build + depends_on "openssl" def install + ENV.cxx11 args = ["--prefix=#{prefix}"] args << "--enable-debug" if build.include? "enable-debug" |
