blob: fadcb6ba98a80a78a8fa5ab35c84b7a4c257ef74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 'pkg-config' => :build
depends_on 'libogg'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|