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