diff options
| author | Jose Diaz-Gonzalez | 2012-03-15 03:03:29 -0400 |
|---|---|---|
| committer | Max Howell | 2012-03-16 22:43:06 +0000 |
| commit | 6ee85cdc7759e326b53dcb969b60eb0d7da5dc35 (patch) | |
| tree | 39ce9ce9267f85898a6aa36ab280c0a4c959b518 /Library/Formula/memcached-php.rb | |
| parent | 6ec0503f3356485bf5a8991d3eba0de0ca2fa7b6 (diff) | |
| download | homebrew-6ee85cdc7759e326b53dcb969b60eb0d7da5dc35.tar.bz2 | |
Remove PHP formula from homebrew.
Refs #10673. Closes #10957.
Signed-off-by: Max Howell <max@methylblue.com>
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 |
