aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDominyk Tiller2015-01-13 20:09:12 +0000
committerMike McQuaid2015-01-15 11:15:14 +0000
commit00cfc2af77db32516fbeec324242e896724b7d74 (patch)
treea7ab30f9e30213cff0fd51a8ad7d11d669e2bf8d /Library
parentf5d83627536d8449137dbbe14afeaa111d60c54e (diff)
downloadhomebrew-00cfc2af77db32516fbeec324242e896724b7d74.tar.bz2
babeld 1.5.1
Version bump. No practical test possible, sadly, due to the cumbersome requirements necessary to run the executable. Closes #35838. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/babeld.rb16
1 files changed, 11 insertions, 5 deletions
diff --git a/Library/Formula/babeld.rb b/Library/Formula/babeld.rb
index fc523e34b..1268e5147 100644
--- a/Library/Formula/babeld.rb
+++ b/Library/Formula/babeld.rb
@@ -1,16 +1,22 @@
-require 'formula'
-
class Babeld < Formula
- homepage 'http://www.pps.univ-paris-diderot.fr/~jch/software/babel/'
- url 'http://www.pps.univ-paris-diderot.fr/~jch/software/files/babeld-1.4.2.tar.gz'
- sha1 '53c02193e191fa3ab6ac5c4df9cde9795d4fb8b0'
+ homepage "http://www.pps.univ-paris-diderot.fr/~jch/software/babel/"
+ url "http://www.pps.univ-paris-diderot.fr/~jch/software/files/babeld-1.5.1.tar.gz"
+ sha1 "6ff3a7685e62034df83b143a36a4960b2e4d89b9"
+ head "https://github.com/jech/babeld.git"
+ # https://lists.alioth.debian.org/pipermail/babel-users/2015-January/001826.html
patch :DATA
def install
system "make", "LDLIBS=''"
system "make", "install", "PREFIX=#{prefix}"
end
+
+ def caveats; <<-EOS.undent
+ Due to changing network interfaces, this tool
+ requires the usage of `sudo` at runtime.
+ EOS
+ end
end
__END__