blob: cfb9380a47e91ad0c0157cabf73a8afda0ce4bfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
require 'formula'
class Gifsicle < Formula
  url 'http://www.lcdf.org/gifsicle/gifsicle-1.61.tar.gz'
  homepage 'http://www.lcdf.org/gifsicle/'
  md5 '3d9e45873daaf960a35d1b89505f1101'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-all"
    system "make install"
  end
end
  |