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

class Ungif < Formula
  url 'http://sourceforge.net/projects/giflib/files/libungif%204.x/libungif-4.1.4/libungif-4.1.4.tar.bz2'
  md5 '76865bc1bed90ecb5992a1edcc4d6c15'
  homepage 'http://sourceforge.net/projects/giflib/'

  def install
    ENV.j1
    system "./configure", "--prefix=#{prefix}"
    system "make all"
    system "make install"
  end
end