7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
16 lines
415 B
Ruby
16 lines
415 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 'pkg-config'
|
|
depends_on 'libogg'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|