homebrew-core/Formula/gifsicle.rb
Alexander Bohn / FI$H2k 455553c8d7 gifsicle 1.64
- add ENV.x11 to help the linker out a bit

Closes Homebrew/homebrew#10394.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-02-24 19:20:10 -06:00

15 lines
397 B
Ruby

require 'formula'
class Gifsicle < Formula
homepage 'http://www.lcdf.org/gifsicle/'
url 'http://www.lcdf.org/gifsicle/gifsicle-1.64.tar.gz'
md5 'dabe9ee0d6d9cea099d9a7e6ecdcc443'
def install
ENV.x11
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-all"
system "make install"
end
end