aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xdebug.rb
blob: 2c998e910877bc58765d46926f39294865a83b7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require 'formula'

class Xdebug <Formula
  url 'http://xdebug.org/files/xdebug-2.1.0.tgz'
  homepage 'http://xdebug.org'
  md5 '2abf000f8d94af469773b31772aa96ab'

  def install
    Dir.chdir "xdebug-#{version}" do
      # See http://github.com/mxcl/homebrew/issues/#issue/69
      ENV.universal_binary unless Hardware.is_64_bit?

      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
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