Added formula libebml

master
Rick Fletcher 2010-01-03 22:08:41 -08:00 committed by David Höppner
parent 96ae2f03f8
commit 87db6a7124
1 changed files with 14 additions and 0 deletions

14
Formula/libebml.rb Normal file
View File

@ -0,0 +1,14 @@
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'
url 'http://www.bunkus.org/videotools/mkvtoolnix/sources/libebml-0.7.8.tar.bz2'
homepage 'http://www.matroska.org/'
md5 '6278109f52e4f9d2c8a8dfc0d668b587'
def install
system 'cp -r make/linux make/darwin'
system "cd make/darwin && make install prefix=#{prefix}"
end
end