44 lines
1.5 KiB
Ruby
44 lines
1.5 KiB
Ruby
class Giflossy < Formula
|
|
desc "Lossy LZW compression, reduces GIF file sizes by 30-50%"
|
|
homepage "https://pornel.net/lossygif"
|
|
url "https://github.com/kornelski/giflossy/archive/1.91.tar.gz"
|
|
sha256 "b97f6aadf163ff5dd96ad1695738ad3d5aa7f1658baed8665c42882f11d9ab22"
|
|
license "GPL-2.0-only"
|
|
head "https://github.com/kornelski/giflossy.git"
|
|
|
|
bottle do
|
|
rebuild 2
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "860d0bb8cd391ad3d2309613c18a5f4f80d1b12e1156a28eb81c2bf7a0f460b8"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "ad63a534a7e83c162d536cb43c421a78b089ca9921e89ed598c8ae13fe7adb1f"
|
|
sha256 cellar: :any_skip_relocation, catalina: "de5ae53cff723bbb5cbe11028d088f028053ebc70a14b6497dd7f5f9ca9651b4"
|
|
sha256 cellar: :any_skip_relocation, mojave: "02eeb9a6b44178fdf1df803346dceedda853c7245cd51a1a6166290a73fb51f4"
|
|
end
|
|
|
|
# "This project has now been officially merged upstream into Gifsicle, so
|
|
# please use that": https://github.com/kohler/gifsicle
|
|
deprecate! date: "2019-05-27", because: :repo_archived
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
|
|
conflicts_with "gifsicle",
|
|
because: "both install an `gifsicle` binary"
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--disable-gifview
|
|
]
|
|
|
|
system "autoreconf", "-fvi"
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system bin/"gifsicle", "-O3", "--lossy=80", "-o",
|
|
"out.gif", test_fixtures("test.gif")
|
|
end
|
|
end
|