ee1f12ed97
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>
15 lines
389 B
Ruby
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
|