homebrew-core/Formula/enet.rb
Brett Koonce aa174685ac enet 1.3.5
Closes Homebrew/homebrew#13969.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-05 20:56:22 -07:00

12 lines
315 B
Ruby

require 'formula'
class Enet < Formula
homepage 'http://enet.bespin.org'
url 'http://enet.bespin.org/download/enet-1.3.5.tar.gz'
sha1 '40242c48c255f65da2b21a6123640e1f7aeaa6c2'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end