2010-11-09 10:31:21 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-26 15:49:34 +00:00
|
|
|
class Audiofile < Formula
|
2011-09-14 21:21:08 +00:00
|
|
|
url 'https://github.com/downloads/mpruett/audiofile/audiofile-0.3.1.tar.gz'
|
|
|
|
sha1 '39de137a691a7c12ea5dc468566eb7a146880ac3'
|
2010-11-09 10:31:21 +00:00
|
|
|
homepage 'http://www.68k.org/~michael/audiofile/'
|
2011-09-14 21:21:08 +00:00
|
|
|
|
|
|
|
depends_on 'lcov' if ARGV.include? '--with-lcov'
|
|
|
|
|
|
|
|
# Builds with all 3 compilers. Cheers Clang!
|
|
|
|
|
|
|
|
def options
|
|
|
|
[
|
|
|
|
['--with-lcov', 'Enable Code Coverage support using lcov.'],
|
|
|
|
['--with-check', 'Run the test suite during install ~30sec']
|
|
|
|
]
|
|
|
|
end
|
2010-11-09 10:31:21 +00:00
|
|
|
|
|
|
|
def install
|
2011-09-14 21:21:08 +00:00
|
|
|
args = ["--prefix=#{prefix}", "--disable-dependency-tracking"]
|
|
|
|
args << '--enable-coverage' if ARGV.include? '--with-lcov'
|
|
|
|
system "./configure", *args
|
|
|
|
system "make"
|
|
|
|
system "make check" if ARGV.include? '--with-check'
|
2010-11-09 10:31:21 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2011-09-14 21:21:08 +00:00
|
|
|
|
|
|
|
def test
|
|
|
|
inn = '/System/Library/Sounds/Glass.aiff'
|
|
|
|
out = 'Glass.wav'
|
|
|
|
hear = '/usr/bin/qlmanage'
|
|
|
|
conv = "#{HOMEBREW_PREFIX}/bin/sfconvert"
|
|
|
|
info = "#{HOMEBREW_PREFIX}/bin/sfinfo"
|
|
|
|
|
|
|
|
puts ''
|
|
|
|
if File.exist?("#{conv}") and File.exist?("#{inn}") and
|
|
|
|
File.exist?("#{hear}") and File.exist?("#{info}")
|
|
|
|
mktemp do
|
|
|
|
system "#{conv} #{inn} #{out} format wave"
|
|
|
|
system "#{info} --short --reporterror #{out}"
|
|
|
|
system "#{hear} -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
|
|
|
|
else
|
|
|
|
opoo <<-EOS.undent
|
|
|
|
The test program couldn't locate one of these files that normally exist:
|
|
|
|
#{inn}
|
|
|
|
#{conv}
|
|
|
|
#{info}
|
|
|
|
#{hear}
|
|
|
|
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:
|
|
|
|
|
|
|
|
EOS
|
|
|
|
oh1 ' brew rm audiofile'
|
|
|
|
oh1 ' brew -v install audiofile --with-check'
|
|
|
|
puts ''
|
|
|
|
end # if-else
|
|
|
|
end # def test
|
2010-11-09 10:31:21 +00:00
|
|
|
end
|