aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libev.rb
blob: 9f3eaba5f8ff10602da7e8c20e21ab837869c36e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Libev <Formula
  url 'http://dist.schmorp.de/libev/libev-4.00.tar.gz'
  homepage 'http://software.schmorp.de/pkg/libev.html'
  md5 '7b8fb956152e55b3b12795dff18f99f8'

  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-shared",
                          "--mandir=#{man}"
    system "make install"
  end
end