aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/audiofile.rb
diff options
context:
space:
mode:
authorJack Nagel2012-05-06 01:03:01 -0500
committerJack Nagel2012-05-06 01:07:42 -0500
commit401f73015a30289974046b9379469a40a1e52d29 (patch)
treea1de210b30d079e5809a4dcbe1f385b68060e231 /Library/Formula/audiofile.rb
parentb4822c28580937f7cd9ccadee447dfcdca22dcb8 (diff)
downloadhomebrew-401f73015a30289974046b9379469a40a1e52d29.tar.bz2
audiofile: remove oh1 output
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/audiofile.rb')
-rw-r--r--Library/Formula/audiofile.rb14
1 files changed, 4 insertions, 10 deletions
diff --git a/Library/Formula/audiofile.rb b/Library/Formula/audiofile.rb
index 22fd3fb8c..8e2e864ba 100644
--- a/Library/Formula/audiofile.rb
+++ b/Library/Formula/audiofile.rb
@@ -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