47 lines
1.9 KiB
Ruby
47 lines
1.9 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", branch: "master"
|
|
|
|
bottle do
|
|
rebuild 2
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "866787f4509dc13bfaf1a8d7b1bea9932d67ce1ca0251c066d16e49025d37e69"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "860d0bb8cd391ad3d2309613c18a5f4f80d1b12e1156a28eb81c2bf7a0f460b8"
|
|
sha256 cellar: :any_skip_relocation, monterey: "5cf0e6039d9f2465c29eb32077dd9314207a768f6bf085d91511d4a21dff4758"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "ad63a534a7e83c162d536cb43c421a78b089ca9921e89ed598c8ae13fe7adb1f"
|
|
sha256 cellar: :any_skip_relocation, catalina: "de5ae53cff723bbb5cbe11028d088f028053ebc70a14b6497dd7f5f9ca9651b4"
|
|
sha256 cellar: :any_skip_relocation, mojave: "02eeb9a6b44178fdf1df803346dceedda853c7245cd51a1a6166290a73fb51f4"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "34ab9b407a91767e47baf6c4a9a3ab6087ca82858ad46ad2db16ab6ef18cae3d"
|
|
end
|
|
|
|
# "This project has now been officially merged upstream into Gifsicle, so
|
|
# please use that": https://github.com/kohler/gifsicle
|
|
disable! date: "2022-07-31", 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
|