aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/flvmeta.rb
blob: 73e1582df6cf3c6f9617830684b9c0980ffbfaa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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