homebrew-core/Formula/libvorbis.rb
Martin Kühl ee1f12ed97 Disable pdf generation in the libvorbis formula.
The pdf generation fails (with a default working MacTeX installation)
while in interactive mode, hanging the `brew install` process.  The HTML
docs are still getting installed.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-03-09 09:04:20 -08:00

15 lines
389 B
Ruby

require 'formula'
class Libvorbis <Formula
url 'http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.3.tar.bz2'
md5 '67beb237faf97d74782ec7071756b2b6'
homepage 'http://vorbis.com'
depends_on 'libogg'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug",
"--disable-dependency-tracking"
system "make install"
end
end