2014-03-27 17:02:36 +00:00
|
|
|
require "formula"
|
2010-05-01 16:07:56 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gifsicle < Formula
|
2014-03-27 17:02:36 +00:00
|
|
|
homepage "http://www.lcdf.org/gifsicle/"
|
2014-07-06 14:36:50 +00:00
|
|
|
url "http://www.lcdf.org/gifsicle/gifsicle-1.84.tar.gz"
|
|
|
|
sha1 "131a3e53a1d49318b54f9c6f81a62726384e95d7"
|
2010-05-01 16:07:56 +00:00
|
|
|
|
2014-03-27 17:02:36 +00:00
|
|
|
depends_on :x11 => :optional
|
2012-06-07 01:35:12 +00:00
|
|
|
|
2010-05-01 16:07:56 +00:00
|
|
|
def install
|
2014-03-27 17:02:36 +00:00
|
|
|
args = %W[
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
]
|
|
|
|
|
|
|
|
args << "--disable-gifview" if build.without? "x11"
|
|
|
|
|
|
|
|
system "./configure", *args
|
2010-05-01 16:07:56 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|