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/mcrypt-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/mcrypt-php.rb')
| -rw-r--r-- | Library/Formula/mcrypt-php.rb | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/Library/Formula/mcrypt-php.rb b/Library/Formula/mcrypt-php.rb deleted file mode 100644 index 1ee380456..000000000 --- a/Library/Formula/mcrypt-php.rb +++ /dev/null @@ -1,30 +0,0 @@ -require 'formula' - -class McryptPhp < Formula - homepage 'http://php.net/manual/fr/book.mcrypt.php' - url 'http://us.php.net/get/php-5.3.6.tar.gz/from/fr.php.net/mirror' - version '5.3.6' - md5 '88a2b00047bc53afbbbdf10ebe28a57e' - - depends_on 'mcrypt' - - def install - cd "ext/mcrypt" do - system "phpize" - system "./configure", "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--with-mcrypt=#{Formula.factory('mcrypt').prefix}" - system "make" - prefix.install 'modules/mcrypt.so' - end - end - - def caveats; <<-EOS.undent - To finish mcrypt-php installation, you need to add the - following line into php.ini: - extension="#{prefix}/mcrypt.so" - Then, restart your webserver and check in phpinfo if - you're able to see something about mcrypt - EOS - end -end |
