diff options
Diffstat (limited to 'Library/Formula/memcached-php.rb')
| -rw-r--r-- | Library/Formula/memcached-php.rb | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Library/Formula/memcached-php.rb b/Library/Formula/memcached-php.rb deleted file mode 100644 index 5354e24cb..000000000 --- a/Library/Formula/memcached-php.rb +++ /dev/null @@ -1,27 +0,0 @@ -require 'formula' - -class MemcachedPhp < Formula - homepage 'http://pecl.php.net/package/memcached' - url 'http://pecl.php.net/get/memcached-1.0.2.tgz' - md5 'b91f815ad59086d0c3564cce022b5c4f' - - depends_on 'libmemcached' - - def install - cd "memcached-#{version}" do - system "phpize" - system "./configure", "--prefix=#{prefix}", - "--with-libmemcached-dir=#{Formula.factory('libmemcached').prefix}" - system "make" - prefix.install 'modules/memcached.so' - end - end - - def caveats; <<-EOS.undent - To finish installing memcached: - * Add the following line to php.ini: - extension="#{prefix}/memcached.so" - * Restart your webserver - EOS - end -end |
