homebrew-core/Formula/libvorbis.rb
Tuncer Ayaz 879eee0886 Updated formula: libvorbis-1.3.1
Signed-off-by: Tuncer Ayaz <tuncer.ayaz@gmail.com>
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-04-01 19:52:33 +02:00

15 lines
389 B
Ruby

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