aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2014-02-25 20:50:00 -0800
committerAdam Vandenberg2014-02-27 08:21:20 -0800
commitcb054ecdd4c26cccd6eb74be833848c93d9ffccc (patch)
tree6be8cdcf4fb9475ca42299bcc608b5bae437eee7
parent697127a7ecb06d10ea90b83c48c0291a69c57759 (diff)
downloadhomebrew-cb054ecdd4c26cccd6eb74be833848c93d9ffccc.tar.bz2
libmemcached: use Formula[]
-rw-r--r--Library/Formula/libmemcached.rb13
1 files changed, 6 insertions, 7 deletions
diff --git a/Library/Formula/libmemcached.rb b/Library/Formula/libmemcached.rb
index 8976f4d58..34601ba44 100644
--- a/Library/Formula/libmemcached.rb
+++ b/Library/Formula/libmemcached.rb
@@ -20,24 +20,23 @@ class Libmemcached < Formula
depends_on "memcached"
end
+ def patches
+ # https://bugs.launchpad.net/libmemcached/+bug/1284765
+ DATA
+ end
+
def install
ENV.append_to_cflags "-undefined dynamic_lookup" if MacOS.version <= :leopard
args = ["--prefix=#{prefix}"]
if build.with? "sasl"
- args << "--with-memcached-sasl=#{Formula.factory("memcached").bin}/memcached"
+ args << "--with-memcached-sasl=#{Formula["memcached"].bin}/memcached"
end
system "./configure", *args
system "make install"
end
-
- def patches
- # https://bugs.launchpad.net/libmemcached/+bug/1284765
- DATA
- end
-
end
__END__