blob: 265b5cb9eab1f399acf62c8bdf994842b14fc386 (
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
|