homebrew-core/Formula/vcs.rb

38 lines
1.4 KiB
Ruby

class Vcs < Formula
desc "Creates video contact sheets (previews) of videos"
homepage "https://p.outlyer.net/vcs/"
url "https://p.outlyer.net/vcs/files/vcs-1.13.2.tar.gz"
sha256 "fc2a2b3994d5ffb5d87fb3dceaa5f6855aca7a89c58533b12fd11b8fb5b623af"
bottle do
cellar :any_skip_relocation
rebuild 1
sha256 "b50a29774c1653b6f0cf23cf70b425212062138db17634916a46f9e5269fe5d6" => :high_sierra
sha256 "d9b65057f5f6746e32f075af250611956e3fecf6aae5300ce517fe0edfb155cc" => :sierra
sha256 "93bf052fe5378df11b4dfa929d6c2aea6a5a623a198a8a765374332ca662dfaf" => :el_capitan
sha256 "93bf052fe5378df11b4dfa929d6c2aea6a5a623a198a8a765374332ca662dfaf" => :yosemite
end
depends_on "ffmpeg"
depends_on "gnu-getopt"
depends_on "ghostscript"
depends_on "imagemagick"
depends_on "mplayer" => :optional
def install
inreplace "vcs", "declare GETOPT=getopt", "declare GETOPT=#{Formula["gnu-getopt"].opt_bin}/getopt"
system "make", "install", "prefix=#{prefix}"
end
test do
system Formula["ffmpeg"].bin/"ffmpeg", "-f", "rawvideo", "-s", "hd720",
"-pix_fmt", "yuv420p", "-r", "30", "-t", "5", "-i", "/dev/zero",
testpath/"video.mp4"
assert_predicate testpath/"video.mp4", :exist?
system bin/"vcs", "-i", "1", "-o", testpath/"sheet.png", testpath/"video.mp4"
assert_predicate testpath/"sheet.png", :exist?
end
end