homebrew-core/Formula/vorbis-tools.rb
Adam Vandenberg ab643771fb brew-audit - check for commented-out dependencies
"brew audit" will now warn about commented-out dependencies.

Updated formulae that had these to either take them out or rewrite
the comments around them.
2010-09-13 15:16:09 -07:00

20 lines
553 B
Ruby

require 'formula'
class VorbisTools <Formula
url 'http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz'
md5 '567e0fb8d321b2cd7124f8208b8b90e6'
homepage 'http://vorbis.com'
depends_on 'libogg'
depends_on 'libvorbis'
# ao and ogg123 are optional deps
# Not sure why we don't just require them. - Adam V.
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--disable-nls",
"--prefix=#{prefix}"
system "make install"
end
end