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
18 lines
503 B
Ruby
18 lines
503 B
Ruby
require 'formula'
|
|
|
|
class VorbisTools <Formula
|
|
url 'http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz'
|
|
md5 '567e0fb8d321b2cd7124f8208b8b90e6'
|
|
homepage 'http://vorbis.com'
|
|
|
|
depends_on 'libogg'
|
|
depends_on 'libvorbis'
|
|
#depends_on 'ao' => :optional
|
|
#depends_on 'ogg123' => :optional
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--disable-nls", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|