blob: a8775bf693788168a0ea053cd9f0242023080ff2 (
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.67.tar.gz'
sha1 '9b239cfce086d416017b237743d68d19a3a095f6'
depends_on :x11
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-all"
system "make install"
end
end
|