Add libungif

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Matthew L Daniel 2010-11-16 23:23:11 +01:00 committed by Adam Vandenberg
parent b1fa9b8a5f
commit a97960f6ca

14
Formula/ungif.rb Normal file
View file

@ -0,0 +1,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