libmemcached: use Formula[]
This commit is contained in:
parent
dba6a3a40e
commit
fa444f8e38
1 changed files with 6 additions and 7 deletions
|
@ -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__
|
||||
|
|
Loading…
Reference in a new issue