commit d01bff0f0800ac172be1b311b6d061e058104e96 Author: Luke Childs Date: Thu Jul 7 13:37:49 2016 +0100 Add gifgen formula diff --git a/gifgen.rb b/gifgen.rb new file mode 100644 index 0000000..eddbeb4 --- /dev/null +++ b/gifgen.rb @@ -0,0 +1,13 @@ +class Gifgen < Formula + desc "Simple high quality GIF encoding" + homepage "https://github.com/lukechilds/gifgen" + url "https://github.com/lukechilds/gifgen/archive/1.0.0.zip" + version "1.0.0" + sha256 "aa561d12c966b11c7c3e5c0be3ad108420e9e9e36a337aa5d08c72a665e74574" + + depends_on "ffmpeg" + + def install + bin.install "gifgen" + end +end