aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gifsicle.rb
blob: bd6655ef539e1d13801a1f5a972187a55ec018f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Gifsicle < Formula
  homepage 'http://www.lcdf.org/gifsicle/'
  url 'http://www.lcdf.org/gifsicle/gifsicle-1.70.tar.gz'
  sha1 'f5017c7e3298108f2063a926f83392c66f0652ae'

  depends_on :x11

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-all"
    system "make install"
  end
end