blob: d937bfab42a39638527645dfc682d0f3f841f6e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
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 --enable-docs --disable-debug --disable-dependency-tracking --prefix='#{prefix}'"
    system "make install"
  end
end
  |