aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ffmpeg-php.rb
diff options
context:
space:
mode:
authorCharlie Sharpsteen2011-11-09 16:13:23 -0800
committerCharlie Sharpsteen2011-11-09 16:13:23 -0800
commit99411cc299141c031cd0508f3d931677e6561d7b (patch)
treeca0eec9c981391c565d4170c367f6b2540634112 /Library/Formula/ffmpeg-php.rb
parentffbe9224f4fe7bcd2f50904b559abb96d67dbc58 (diff)
downloadhomebrew-99411cc299141c031cd0508f3d931677e6561d7b.tar.bz2
Remove Formula: FFmpeg-PHP
No longer works with FFmpeg version newer than 0.8.x and upstream project has been dead for years. Closes #7780.
Diffstat (limited to 'Library/Formula/ffmpeg-php.rb')
-rw-r--r--Library/Formula/ffmpeg-php.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/Library/Formula/ffmpeg-php.rb b/Library/Formula/ffmpeg-php.rb
deleted file mode 100644
index ed60bedc3..000000000
--- a/Library/Formula/ffmpeg-php.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-require 'formula'
-
-class FfmpegPhp < Formula
- homepage 'http://ffmpeg-php.sourceforge.net'
- head 'http://ffmpeg-php.svn.sourceforge.net/svnroot/ffmpeg-php/trunk/ffmpeg-php'
-
- depends_on 'ffmpeg'
-
- def install
- system "phpize"
- system "./configure", "--disable-debug",
- "--prefix=#{prefix}",
- "--with-ffmpeg=#{HOMEBREW_PREFIX}"
- system "make"
- prefix.install 'modules/ffmpeg.so'
- end
-
- def caveats; <<-EOS
- * Add the following line to php.ini:
- extension="#{prefix}/ffmpeg.so"
- * Restart your webserver.
- * Write a PHP page that calls "phpinfo();"
- * Load it in a browser and look for the info on the ffmpeg module.
- * If you see it, you have been successful!
- EOS
- end
-end