homebrew-core/Formula/libebml.rb
Adam Vandenberg da3fdbd0cf Use "cd" instead of "Dir.chdir"
* And "mkdir" isntead of "Dir.mkdir"
* And "Dir[]" instead of "Dir.glob"
* Also style fixes and nitpicks
2012-02-24 21:35:50 -08:00

14 lines
403 B
Ruby

require 'formula'
class Libebml < Formula
homepage 'http://www.matroska.org/'
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'
md5 '726cc2bd1a525929ff35ff9854c0ebab'
def install
cd 'make/linux' do
system "make", "install", "prefix=#{prefix}", "CXX=#{ENV.cxx}"
end
end
end