homebrew-core/Formula/flvmeta.rb

28 lines
1.1 KiB
Ruby

class Flvmeta < Formula
desc "Manipulate Adobe flash video files (FLV)"
homepage "https://www.flvmeta.com/"
url "https://flvmeta.com/files/flvmeta-1.2.2.tar.gz"
sha256 "a51a2f18d97dfa1d09729546ce9ac690569b4ce6f738a75363113d990c0e5118"
license "GPL-2.0"
head "https://github.com/noirotm/flvmeta.git"
bottle do
sha256 cellar: :any_skip_relocation, arm64_big_sur: "1278110538d3806072234a6dc02858b96ed87f8de9110398ba07af5b345f6e4e"
sha256 cellar: :any_skip_relocation, big_sur: "e519203e5deb5c2f18f34b12095f4389a5a76d86f914379cb62e397b175e7466"
sha256 cellar: :any_skip_relocation, catalina: "bb16f5006d22ffaebba50c0d9c5cc962cf73dfcf1ca51d1e69735908ef9aa8cd"
sha256 cellar: :any_skip_relocation, mojave: "176a5edcfbe2da366e27f67590c45870b59ad250cc7f2a51d7a8d0a18f12632b"
sha256 cellar: :any_skip_relocation, high_sierra: "2ef376486588157dc4e17914ab8ba62a1689aaf92fe101613f93fd0d05018fee"
end
depends_on "cmake" => :build
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
test do
system bin/"flvmeta", "-V"
end
end