diff options
Diffstat (limited to 'Library/Formula/xdebug.rb')
| -rw-r--r-- | Library/Formula/xdebug.rb | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/Library/Formula/xdebug.rb b/Library/Formula/xdebug.rb deleted file mode 100644 index 172602b1c..000000000 --- a/Library/Formula/xdebug.rb +++ /dev/null @@ -1,32 +0,0 @@ -require 'formula' - -class Xdebug < Formula - homepage 'http://xdebug.org' - url 'http://www.xdebug.org/files/xdebug-2.1.3.tgz' - md5 '779f4a66acdccd673553769e403674c4' - - def install - cd "xdebug-#{version}" do - # See https://github.com/mxcl/homebrew/issues/issue/69 - ENV.universal_binary - - system "phpize" - system "./configure", "--disable-debug", "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--enable-xdebug" - system "make" - prefix.install 'modules/xdebug.so' - end - end - - def caveats; <<-EOS.undent - To use this software: - * Add the following line to php.ini: - zend_extension="#{prefix}/xdebug.so" - * Restart your webserver. - * Write a PHP page that calls "phpinfo();" - * Load it in a browser and look for the info on the xdebug module. - * If you see it, you have been successful! - EOS - end -end |
