homebrew-core/Formula/libebml.rb
Jack Nagel 40ba4a86b8 libebml: overhaul install method
Make it more Homebrew-like. As a bonus it now respects the value of
ENV.cxx.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-30 01:56:31 -05:00

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