master
Kieran Pilkington 2009-11-02 15:59:07 +13:00 committed by Max Howell
parent d876c0add6
commit 9c430f9d83
1 changed files with 12 additions and 0 deletions

12
Formula/enet.rb Normal file
View File

@ -0,0 +1,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