aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlexey Palazhchenko2011-01-22 20:48:17 +0300
committerAdam Vandenberg2011-01-23 16:29:29 -0800
commitab4cbf481bd03b2fa3cc7d61f770152d86477f4f (patch)
tree955578780058a78bd671f79e63dd814cec4b389a /Library/Formula
parent99b3ce9df8f685c856061e8189298b65ce8eff35 (diff)
downloadhomebrew-ab4cbf481bd03b2fa3cc7d61f770152d86477f4f.tar.bz2
memcachedb - update to 1.2.1-beta
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/memcachedb.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/memcachedb.rb b/Library/Formula/memcachedb.rb
index 73425ccde..b35b58f94 100644
--- a/Library/Formula/memcachedb.rb
+++ b/Library/Formula/memcachedb.rb
@@ -1,15 +1,17 @@
require 'formula'
class Memcachedb <Formula
- url 'http://memcachedb.googlecode.com/files/memcachedb-1.2.0.tar.gz'
+ url 'http://memcachedb.googlecode.com/files/memcachedb-1.2.1-beta.tar.gz'
homepage 'http://memcachedb.org'
- md5 '1642242ab2108611873588b77848317b'
+ md5 'd382839a96b0372b2d96418c5c9988e1'
depends_on 'berkeley-db'
depends_on 'libevent'
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--enable-threads"
system "make install"
end
end