blob: ba8171df92e7309765c2168d6430f8e45c5995b8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | require 'formula'
class Wdiff < Formula
  homepage 'http://www.gnu.org/software/wdiff/'
  url 'http://ftpmirror.gnu.org/wdiff/wdiff-1.1.2.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/wdiff/wdiff-1.1.2.tar.gz'
  md5 'ac51497a2b33094c484237049803a697'
  depends_on 'gettext' => :optional
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-experimental"
    system "make install"
  end
end
 |