homebrew-core/Formula/libev.rb

15 lines
409 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libev < Formula
url 'http://dist.schmorp.de/libev/Attic/libev-4.04.tar.gz'
homepage 'http://software.schmorp.de/pkg/libev.html'
sha1 '7768c2bcce30dbf76672e51642a655479dd45772'
def install
2010-11-07 05:50:02 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end