blob: 6190dd72361993fd9b1f2cff15d5cacf2ca4de62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Libev <Formula
url 'http://dist.schmorp.de/libev/Attic/libev-4.03.tar.gz'
homepage 'http://software.schmorp.de/pkg/libev.html'
md5 '86cd5c1b42fced1bd02c6e0119e9b865'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--enable-shared"
system "make install"
end
end
|