e990d03870
Add a formula for the animated-gif tool gifsicle. By installing you solemnly promise you won't make any "Under Construction" banners with it. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
351 B
Ruby
12 lines
351 B
Ruby
require 'formula'
|
|
|
|
class Gifsicle <Formula
|
|
url 'http://www.lcdf.org/gifsicle/gifsicle-1.60.tar.gz'
|
|
homepage 'http://www.lcdf.org/gifsicle/'
|
|
md5 '2629d5894e189e251f148eec8e7805d6'
|
|
|
|
def install
|
|
system "./configure", "--enable-all", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|