blob: 87fc49985e9ea31fa897f287677553328e125c84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|