aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/memcached.rb
blob: 3b942615f482a0ff5110d7a431e8e328d95b54fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'brewkit'

class Memcached <Formula
  @url='http://memcached.googlecode.com/files/memcached-1.4.0.tar.gz'
  @homepage='http://www.danga.com/memcached/'
  @md5='d7651ecb8bf345144cb17900d9a46c85'

  depends_on 'libevent'

  def install
    system "./configure --prefix='#{prefix}'"
    system "make install"
  end
end