aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/serf.rb
diff options
context:
space:
mode:
authorDmitry Wolf2012-05-05 08:07:36 +0400
committerAdam Vandenberg2012-06-11 07:36:29 -0700
commitd8f55b3b410d4c08f6c4eae05e0bc48c3884bb0b (patch)
treefa2e109d50abbfcb09892490226d7c0bdf357893 /Library/Formula/serf.rb
parent6566be7016ceec3f18a8ae8cefea88b08f434620 (diff)
downloadhomebrew-d8f55b3b410d4c08f6c4eae05e0bc48c3884bb0b.tar.bz2
serf 1.1.0
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>
Diffstat (limited to 'Library/Formula/serf.rb')
-rw-r--r--Library/Formula/serf.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/serf.rb b/Library/Formula/serf.rb
new file mode 100644
index 000000000..39ce057b6
--- /dev/null
+++ b/Library/Formula/serf.rb
@@ -0,0 +1,14 @@
+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