diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ffmbc.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/ffmbc.rb b/Library/Formula/ffmbc.rb index eead73f3e..c3407747c 100644 --- a/Library/Formula/ffmbc.rb +++ b/Library/Formula/ffmbc.rb @@ -1,8 +1,8 @@ require 'formula' class Ffmbc < Formula - url 'http://ffmbc.googlecode.com/files/FFmbc-0.7-rc5.tar.bz2' homepage 'http://code.google.com/p/ffmbc/' + url 'http://ffmbc.googlecode.com/files/FFmbc-0.7-rc5.tar.bz2' md5 '42881eaf4f012c0d32f1bebde2bbb70d' depends_on 'yasm' => :build @@ -38,11 +38,11 @@ class Ffmbc < Formula # ffmbc's lib and bin names conflict with ffmpeg and libav # This formula will only install the commandline tools - File.rename "ffprobe", "ffprobe-bc" - bin.install ["ffmbc","ffprobe-bc"] + mv "ffprobe", "ffprobe-bc" + bin.install "ffmbc", "ffprobe-bc" Dir.chdir "doc" - File.rename "ffprobe.1", "ffprobe-bc.1" - man1.install ["ffmbc.1", "ffprobe-bc.1"] + mv.rename "ffprobe.1", "ffprobe-bc.1" + man1.install "ffmbc.1", "ffprobe-bc.1" end def caveats |
