blob: 1bae1b2e44f148fef21a64946b42c4b33425f65c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
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'
  conflicts_with 'libevent',
    :because => 'both install an event.h header file'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make install"
  end
end
  |