4f94822749
no /usr/local/lib for you
40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
class Libwebm < Formula
|
|
desc "WebM container"
|
|
homepage "https://www.webmproject.org/code/"
|
|
url "https://github.com/webmproject/libwebm/archive/libwebm-1.0.0.27.tar.gz"
|
|
sha256 "1332f43742aeae215fd8df1be6e363e753b17abb37447190e789299fe3edec77"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "36f647efcc9d72881ad8998df30e3268ec0b69b81c872fc381e3d7126fa2da6e" => :sierra
|
|
sha256 "784418b8fc6006788c3a7c867cf675532fb7b86299ff9f8fb85d946c2e8cbc38" => :el_capitan
|
|
sha256 "c6c99d02e47ed6ec17821ab9386e49b40ffad45e30f58fdbae62395dc16def18" => :yosemite
|
|
sha256 "944eb5c9802b3f676e39e29b9eff89f2d5e1dcbeac1b2595f52b5df21369e561" => :mavericks
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
mkdir "macbuild" do
|
|
system "cmake", "..", *std_cmake_args
|
|
system "make"
|
|
lib.install "libwebm.a"
|
|
bin.install %w[sample sample_muxer vttdemux webm2pes]
|
|
end
|
|
include.install Dir.glob("mkv*.hpp")
|
|
include.install Dir.glob("vtt*.h")
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<-EOS.undent
|
|
#include <mkvwriter.hpp>
|
|
int main()
|
|
{
|
|
mkvmuxer::MkvWriter writer();
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cxx, "test.cpp", "-L#{lib}", "-lwebm", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|