aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pspell-php.rb
diff options
context:
space:
mode:
authorJose Diaz-Gonzalez2012-03-15 03:03:29 -0400
committerMax Howell2012-03-16 22:43:06 +0000
commit6ee85cdc7759e326b53dcb969b60eb0d7da5dc35 (patch)
tree39ce9ce9267f85898a6aa36ab280c0a4c959b518 /Library/Formula/pspell-php.rb
parent6ec0503f3356485bf5a8991d3eba0de0ca2fa7b6 (diff)
downloadhomebrew-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/pspell-php.rb')
-rw-r--r--Library/Formula/pspell-php.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/Library/Formula/pspell-php.rb b/Library/Formula/pspell-php.rb
deleted file mode 100644
index f9071d4b4..000000000
--- a/Library/Formula/pspell-php.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-require 'formula'
-
-class PspellPhp < Formula
- homepage 'http://php.net/manual/en/book.pspell.php'
- url 'http://museum.php.net/php5/php-5.3.6.tar.gz'
- md5 '88a2b00047bc53afbbbdf10ebe28a57e'
-
- depends_on 'aspell'
-
- def install
- cd "ext/pspell" do
- system "phpize"
- system "./configure", "--disable-debug",
- "--prefix=#{prefix}",
- "--with-pspell=#{HOMEBREW_PREFIX}"
- system "make"
- prefix.install 'modules/pspell.so'
- end
- end
-
- def caveats; <<-EOS.undent
- To finish installing the pspell module:
- * Add the following line to php.ini:
- extension="#{prefix}/pspell.so"
- * To verify, run "php -m" and look for the pspell module.
- * Restart your webserver
- EOS
- end
-end