blob: d704f052b7dab2556491f3558ff5efc49cda8ec1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|