aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2014-12-05 01:30:13 +0000
committerMike McQuaid2014-12-05 11:32:24 +0000
commit98448bb36ab2f776a5dc220ee23222de5810aa86 (patch)
tree39351591fc6532fe695ae7e2bc95f40a2efd49c1 /Library/Formula
parent98f407c82f02bc8657623c0823e4e74508310320 (diff)
downloadhomebrew-98448bb36ab2f776a5dc220ee23222de5810aa86.tar.bz2
dante 1.4.1
Version bump. Closes #34691. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/dante.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/Library/Formula/dante.rb b/Library/Formula/dante.rb
index d91a62ef7..b3af6b33d 100644
--- a/Library/Formula/dante.rb
+++ b/Library/Formula/dante.rb
@@ -2,8 +2,11 @@ require "formula"
class Dante < Formula
homepage "http://www.inet.no/dante/"
- url "http://www.inet.no/dante/files/dante-1.4.0.tar.gz"
- sha1 "3bb6978e3600f5117c54ab5f2b7307dddfd9bce8"
+ url "http://www.inet.no/dante/files/dante-1.4.1.tar.gz"
+ mirror "ftp://ftp.inet.no/pub/socks/dante-1.4.1.tar.gz"
+ sha1 "17ded4322d78b7b031da23cd4e03dbb14f397d71"
+
+ depends_on "miniupnpc" => :optional
bottle do
cellar :any
@@ -16,11 +19,12 @@ class Dante < Formula
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
- "--prefix=#{prefix}"
+ "--prefix=#{prefix}",
+ "--sysconfdir=#{etc}/dante"
system "make", "install"
end
test do
- system "#{bin}/socksify"
+ system "#{sbin}/sockd", "-v"
end
end