audiofile: remove oh1 output

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2012-05-06 01:03:01 -05:00
parent ae8be21375
commit c12a67f639

View file

@ -33,17 +33,16 @@ class Audiofile < Formula
unless File.exist?(conv_bin) and File.exist?(inn) and
File.exist?(hear_bin) and File.exist?(info_bin)
opoo <<-EOS.undent
The test program couldn't locate one of these files that normally exist:
One of the following files could not be located, and so
the test was not executed:
#{inn}
#{conv_bin}
#{info_bin}
#{hear_bin}
We are sorry for the mistake. Another test you can run on this software
will occur during install if you add --with-check like this:
Audiofile can also be tested at build-time:
brew install -v audiofile --with-check
EOS
oh1 ' brew rm audiofile'
oh1 ' brew -v install audiofile --with-check'
return
end
@ -51,11 +50,6 @@ class Audiofile < Formula
system "#{conv_bin} #{inn} #{out} format wave"
system "#{info_bin} --short --reporterror #{out}"
system "#{hear_bin} -p #{out}" if ARGV.verbose?
puts
oh1 <<-EOS.undent
Cheers mate. You converted a system sound from the Audio
Interchange File Format \"aiff\" to the MS RIFF Wave format.
EOS
end
end
end