2010-05-01 16:07:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gifsicle < Formula
|
2010-05-01 16:07:56 +00:00
|
|
|
homepage 'http://www.lcdf.org/gifsicle/'
|
2013-11-30 18:53:17 +00:00
|
|
|
url 'http://www.lcdf.org/gifsicle/gifsicle-1.77.tar.gz'
|
|
|
|
sha1 '29ac22a9aa1a22ed85e4df90668c72d08d89c8b0'
|
2010-05-01 16:07:56 +00:00
|
|
|
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
|
|
|
|
2010-05-01 16:07:56 +00:00
|
|
|
def install
|
2011-03-22 23:36:09 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-all"
|
2010-05-01 16:07:56 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|