blob: f2e1ece785a21137ba6eeb22e737a833e65c3e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Giflib < Formula
homepage 'http://giflib.sourceforge.net/'
# 4.2.0 has breaking API changes; don't update until
# things in $(brew uses giflib) are compatible
url 'http://downloads.sourceforge.net/project/giflib/giflib-4.x/giflib-4.1.6/giflib-4.1.6.tar.bz2'
sha1 '22680f604ec92065f04caf00b1c180ba74fb8562'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|