homebrew-core/Formula/libebml.rb

15 lines
497 B
Ruby
Raw Normal View History

2010-01-04 06:08:41 +00:00
require 'formula'
class Libebml <Formula
# This is the official source, but it's frequently down. Use the mktoolnix mirror instead.
# url 'http://dl.matroska.org/downloads/libebml/libebml-0.7.8.tar.bz2'
2010-06-07 07:56:23 +00:00
url 'http://www.bunkus.org/videotools/mkvtoolnix/sources/libebml-1.0.0.tar.bz2'
2010-01-04 06:08:41 +00:00
homepage 'http://www.matroska.org/'
2010-06-07 07:56:23 +00:00
md5 '6d438f03d8928d83a2d120ed02705f03'
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