26 lines
898 B
Ruby
26 lines
898 B
Ruby
class Flvmeta < Formula
|
|
desc "Manipulate Adobe flash video files (FLV)"
|
|
homepage "https://www.flvmeta.com/"
|
|
url "https://www.flvmeta.com/download.php?file=flvmeta-1.2.1.tar.gz"
|
|
sha256 "4b48afc2db8b0ff1c86861bc09a58481bc241d93b879b6f915fbf695fc4bff51"
|
|
head "https://github.com/noirotm/flvmeta.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "2413315dd7ef5bc4e3cde1710d8d54a5b8481c655e3097d7fa3cebd74aae1dfb" => :sierra
|
|
sha256 "e38ef52c18acdf32d1a61e2604220eeff05b3ca1eb8ca8b215f20371b7b09f37" => :el_capitan
|
|
sha256 "54e7dc4be603332324c5a0833fa03b982c315696b07321295886d1bc3232448f" => :yosemite
|
|
sha256 "d50606001ee39c8fed3f928b38652e437fd3b8bb1fa97306114b93088fc98b0b" => :mavericks
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system bin/"flvmeta", "-V"
|
|
end
|
|
end
|