homebrew-core/Formula/libev.rb

16 lines
444 B
Ruby
Raw Normal View History

require 'formula'
class Libev <Formula
2011-01-14 17:25:12 +00:00
url 'http://dist.schmorp.de/libev/Attic/libev-4.03.tar.gz'
homepage 'http://software.schmorp.de/pkg/libev.html'
md5 '86cd5c1b42fced1bd02c6e0119e9b865'
def install
2010-11-07 05:50:02 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
2010-11-07 05:50:02 +00:00
"--mandir=#{man}",
"--enable-shared"
system "make install"
end
end