homebrew-core/Formula/enet.rb

13 lines
315 B
Ruby
Raw Normal View History

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'
url 'http://enet.bespin.org/download/enet-1.3.5.tar.gz'
sha1 '40242c48c255f65da2b21a6123640e1f7aeaa6c2'
2009-11-02 02:59:07 +00:00
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
2009-11-02 02:59:07 +00:00
system "make install"
end
end