40ba4a86b8
Make it more Homebrew-like. As a bonus it now respects the value of ENV.cxx. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
397 B
Ruby
14 lines
397 B
Ruby
require 'formula'
|
|
|
|
class Libebml < Formula
|
|
url 'http://dl.matroska.org/downloads/libebml/libebml-1.2.2.tar.bz2'
|
|
mirror 'http://www.bunkus.org/videotools/mkvtoolnix/sources/libebml-1.2.2.tar.bz2'
|
|
homepage 'http://www.matroska.org/'
|
|
md5 '726cc2bd1a525929ff35ff9854c0ebab'
|
|
|
|
def install
|
|
chdir 'make/linux' do
|
|
system "make install prefix=#{prefix} CXX=#{ENV.cxx}"
|
|
end
|
|
end
|
|
end
|