88779ade49
Closes Homebrew/homebrew#14653.
14 lines
412 B
Ruby
14 lines
412 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'
|
|
sha1 'f8ef2e044b79b6e4f777b20c0e0e2382c16fbafc'
|
|
|
|
def install
|
|
cd 'make/linux' do
|
|
system "make", "install", "prefix=#{prefix}", "CXX=#{ENV.cxx}"
|
|
end
|
|
end
|
|
end
|