98fec64b3d
Also eliminated an unnecessary configure option. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
409 B
Ruby
14 lines
409 B
Ruby
require 'formula'
|
|
|
|
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
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|