2009-11-02 02:59:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Enet < Formula
|
2009-11-02 02:59:07 +00:00
|
|
|
homepage 'http://enet.bespin.org'
|
2012-08-05 03:21:20 +00:00
|
|
|
url 'http://enet.bespin.org/download/enet-1.3.5.tar.gz'
|
|
|
|
sha1 '40242c48c255f65da2b21a6123640e1f7aeaa6c2'
|
2009-11-02 02:59:07 +00:00
|
|
|
|
|
|
|
def install
|
2012-01-23 20:19:36 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2009-11-02 02:59:07 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|