99a5220015
http://code.google.com/p/serf/ is a C-based HTTP client library It multiplexes connections, running the read/write communication asynchronously. Memory copies and transformations are kept to a minimum to provide high performance operation. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
396 B
Ruby
14 lines
396 B
Ruby
require 'formula'
|
|
|
|
class Serf < Formula
|
|
homepage 'http://code.google.com/p/serf/'
|
|
url 'http://serf.googlecode.com/files/serf-1.1.0.tar.bz2'
|
|
sha1 '231af70b7567a753b49df4216743010c193884b7'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|