aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCheah Chu Yeow2009-10-26 13:01:23 +0800
committerMax Howell2009-11-07 18:22:36 +0000
commit12507b88af13a47fa622efe69c7632e9935767d4 (patch)
treeccc6d841277167abaf557111ef8682fb1fc969b5 /Library
parent262fa6ef9ee6fb1a87818afc3e1a4da02c67b1f6 (diff)
downloadhomebrew-12507b88af13a47fa622efe69c7632e9935767d4.tar.bz2
Add libmemcached formula.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libmemcached.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/libmemcached.rb b/Library/Formula/libmemcached.rb
new file mode 100644
index 000000000..b72d5eac7
--- /dev/null
+++ b/Library/Formula/libmemcached.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Libmemcached <Formula
+ url 'http://download.tangent.org/libmemcached-0.34.tar.gz'
+ homepage 'http://tangent.org/552/libmemcached.html'
+ md5 '5b2026bc0c324066f5175543306d941b'
+
+ depends_on 'memcached'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end \ No newline at end of file