homebrew-core/Formula/libmemcached.rb

14 lines
309 B
Ruby
Raw Normal View History

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