homebrew-core/Formula/gifify.rb
Jonathan Clem 2f532cfa84 gifify 3.0
gifify v3.0

Closes Homebrew/homebrew#40111.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-05-26 22:45:50 +01:00

20 lines
513 B
Ruby

require "formula"
class Gifify < Formula
homepage "https://github.com/jclem/gifify"
head "https://github.com/jclem/gifify.git"
url "https://github.com/jclem/gifify/archive/v3.0.tar.gz"
sha1 "cd374bfad80e024af2b6cce6558474bdffef3f17"
depends_on "ffmpeg"
depends_on "imagemagick"
def install
bin.install "gifify.sh" => "gifify"
end
test do
system "ffmpeg", "-f", "lavfi", "-i", "testsrc", "-t", "1", "-c:v", "libx264", "test.m4v"
system "#{bin}/gifify", "-n", "test.m4v"
end
end