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/'
|
2012-08-31 20:28:40 +00:00
|
|
|
url 'http://www.lcdf.org/gifsicle/gifsicle-1.67.tar.gz'
|
|
|
|
sha1 '9b239cfce086d416017b237743d68d19a3a095f6'
|
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
|