flvmeta 1.1.2

Closes Homebrew/homebrew#28618.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
This commit is contained in:
Robert Sköld 2014-04-22 15:25:36 -04:00 committed by Misty De Meo
parent 6c3d632d1a
commit 4b1c8f4e3a

18
Formula/flvmeta.rb Normal file
View file

@ -0,0 +1,18 @@
require "formula"
class Flvmeta < Formula
homepage "http://www.flvmeta.com"
url "https://github.com/noirotm/flvmeta/archive/v1.1.2.tar.gz"
sha1 "114a6b5b9681bcc6d0cd56ce176cb89002e262ff"
depends_on "cmake" => :build
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
test do
system "#{bin}/flvmeta", "-V"
end
end