homebrew-core/Formula/gifsicle.rb

22 lines
450 B
Ruby

require "formula"
class Gifsicle < Formula
homepage "http://www.lcdf.org/gifsicle/"
url "http://www.lcdf.org/gifsicle/gifsicle-1.83.tar.gz"
sha1 "7498d75f1933156f3930aac417246d34f2cbbf64"
depends_on :x11 => :optional
def install
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
]
args << "--disable-gifview" if build.without? "x11"
system "./configure", *args
system "make install"
end
end