6c8446fbc7
Theora is a free and open video compression format from the Xiph.org Foundation. Like all our multimedia technology it can be used to distribute film and video online and on disc without the licensing and royalty fees or vendor lock-in associated with other formats. Signed-off-by: Max Howell <max@methylblue.com> I changed the name to theora as that is how Xiph refer to it.
15 lines
390 B
Ruby
15 lines
390 B
Ruby
require 'brewkit'
|
|
|
|
class Theora <Formula
|
|
url 'http://downloads.xiph.org/releases/theora/libtheora-1.1.0.tar.bz2'
|
|
homepage 'http://www.theora.org/'
|
|
md5 'd0f83cf7f13e2b3bd068a858ca1398ad'
|
|
|
|
depends_on 'libogg'
|
|
depends_on 'libvorbis'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|