aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDrew Hess2011-05-05 18:48:42 -0700
committerAdam Vandenberg2011-05-06 11:22:12 -0700
commitb9e4834c694e40744653e877fce366c9edfc861d (patch)
tree2b6b084cb11fb8a2fade8f054d473d28ee11ab69 /Library
parentf07444a1799f2ba8c28192e87f35f6cb111dda5b (diff)
downloadhomebrew-b9e4834c694e40744653e877fce366c9edfc861d.tar.bz2
libev 4.04
Also eliminated an unnecessary configure option. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libev.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/libev.rb b/Library/Formula/libev.rb
index 1e0156f9c..0e9f30222 100644
--- a/Library/Formula/libev.rb
+++ b/Library/Formula/libev.rb
@@ -1,15 +1,14 @@
require 'formula'
class Libev < Formula
- url 'http://dist.schmorp.de/libev/Attic/libev-4.03.tar.gz'
+ url 'http://dist.schmorp.de/libev/Attic/libev-4.04.tar.gz'
homepage 'http://software.schmorp.de/pkg/libev.html'
- md5 '86cd5c1b42fced1bd02c6e0119e9b865'
+ sha1 '7768c2bcce30dbf76672e51642a655479dd45772'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
- "--mandir=#{man}",
- "--enable-shared"
+ "--mandir=#{man}"
system "make install"
end
end