aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ffmpeg-php.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/ffmpeg-php.rb')
-rw-r--r--Library/Formula/ffmpeg-php.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/ffmpeg-php.rb b/Library/Formula/ffmpeg-php.rb
index bcb2ce37f..4c483638b 100644
--- a/Library/Formula/ffmpeg-php.rb
+++ b/Library/Formula/ffmpeg-php.rb
@@ -12,17 +12,16 @@ class FfmpegPhp <Formula
"--prefix=#{prefix}",
"--with-ffmpeg=#{HOMEBREW_PREFIX}"
system "make"
- prefix.install 'modules/ffmpeg.so'
+ prefix.install 'modules/ffmpeg.so'
end
- def caveats
- <<-END_CAVEATS
+ 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!
- END_CAVEATS
+ EOS
end
end