fa3d89a7c0
It seems that the main GNU download site has issues in some places outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick a nearby mirror. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
16 lines
433 B
Ruby
16 lines
433 B
Ruby
require 'formula'
|
|
|
|
class Wdiff < Formula
|
|
url 'http://ftpmirror.gnu.org/wdiff/wdiff-1.0.0.tar.gz'
|
|
homepage 'http://www.gnu.org/software/wdiff/'
|
|
md5 '7d4836af64170150023f7424c5b82060'
|
|
|
|
depends_on 'gettext' => :optional
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-experimental"
|
|
system "make install"
|
|
end
|
|
end
|