libvorbis formula

This commit is contained in:
Max Howell 2009-06-18 09:53:36 +01:00
parent 4923207da9
commit ccd34265bc

16
Formula/libvorbis.rb Normal file
View file

@ -0,0 +1,16 @@
require 'brewkit'
class Libvorbis <Formula
@url='http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.2rc1.tar.bz2'
@md5='6a7086ee666b8c62e122d29d107f7bec'
@homepage='http://vorbis.com'
def deps
test_lib 'ogg'
end
def install
system "./configure --enable-docs --disable-debug --disable-dependency-tracking --prefix='#{prefix}'"
system "make install"
end
end