blob: 26bbb05773e21cb6f078f3355afc1d3cc4b9f597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Enet <Formula
url 'http://enet.bespin.org/download/enet-1.2.tar.gz'
homepage 'http://enet.bespin.org'
md5 'e0d9f468d8c6f6bfd07083b3b40f5e69'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|