homebrew-core/Formula/libmemcached.rb
Keith Batten 8c92bebdf2 update to version .43
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-08 05:22:37 -07:00

14 lines
No EOL
309 B
Ruby

require 'formula'
class Libmemcached <Formula
url 'http://download.tangent.org/libmemcached-0.43.tar.gz'
homepage 'http://libmemcached.org'
md5 'f6940255a1889871ef3a29f430370950'
depends_on 'memcached'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end