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-04-23 10:42:12 +00:00
|
|
|
url "http://www.lcdf.org/gifsicle/gifsicle-1.83.tar.gz"
|
|
|
|
sha1 "7498d75f1933156f3930aac417246d34f2cbbf64"
|
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
|