homebrew-core/Formula/libev.rb
Matt Blair e48b13282f libev 4.11
Closes Homebrew/homebrew#10266.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-02-17 14:04:55 -06:00

14 lines
409 B
Ruby

require 'formula'
class Libev < Formula
homepage 'http://software.schmorp.de/pkg/libev.html'
url 'http://dist.schmorp.de/libev/Attic/libev-4.11.tar.gz'
sha1 'e7752a518742c0f8086a8005aa7efcc4dcf02ed9'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end