2010-01-04 06:08:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libebml < Formula
|
2010-01-04 06:08:41 +00:00
|
|
|
# This is the official source, but it's frequently down. Use the mktoolnix mirror instead.
|
2011-06-28 18:43:01 +00:00
|
|
|
# url 'http://dl.matroska.org/downloads/libebml/libebml-1.2.1.tar.bz2'
|
|
|
|
url 'http://www.bunkus.org/videotools/mkvtoolnix/sources/libebml-1.2.1.tar.bz2'
|
2010-01-04 06:08:41 +00:00
|
|
|
homepage 'http://www.matroska.org/'
|
2011-06-28 18:43:01 +00:00
|
|
|
md5 '13c5a10e260e703d3a7f003fdc995183'
|
2010-01-04 06:08:41 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system 'cp -r make/linux make/darwin'
|
|
|
|
system "cd make/darwin && make install prefix=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|