homebrew-core/Formula/gifski.rb

28 lines
949 B
Ruby
Raw Normal View History

class Gifski < Formula
desc "Highest-quality GIF encoder based on pngquant"
homepage "https://gif.ski/"
url "https://github.com/ImageOptim/gifski/archive/0.7.1.tar.gz"
sha256 "c67bbecd7802c0b91e5177edcc39b3492e9fcbd1eee4392c044697bc0f78a409"
2017-12-14 13:40:36 +00:00
bottle do
2018-01-02 21:43:13 +00:00
sha256 "cb2cb660f3f081945d28e359a2ed12b935ff6cf8bc95f535f2e5413cb1567174" => :high_sierra
sha256 "9946cabfbc933615bc5129cf4b9bb9cedabf4b25762224a974bc2b221464d5d0" => :sierra
sha256 "68964d76f8a2e59ca0a2379db20b6ab38bc127293e2369bedb4e1279541087da" => :el_capitan
2017-12-14 13:40:36 +00:00
end
depends_on "pkg-config" => :build
depends_on "rust" => :build
depends_on "ffmpeg"
def install
system "cargo", "build", "--release", "--features=video"
bin.install "target/release/gifski"
end
test do
system bin/"gifski", "-o", "out.gif", test_fixtures("test.png")
assert_predicate testpath/"out.gif", :exist?
refute_predicate (testpath/"out.gif").size, :zero?
end
end