homebrew-core/Formula/wdiff.rb
David Höppner 81b24e2547 New formula wdiff
The program wdiff is a front end to diff for comparing files on a word
per word basis. A word is anything between whitespace. This is useful
for comparing two texts in which a few words have been changed and for
which paragraphs have been refilled.
2010-03-29 18:16:25 +02:00

12 lines
335 B
Ruby

require 'formula'
class Wdiff <Formula
url 'http://ftp.gnu.org/gnu/wdiff/wdiff-0.6.0.tar.gz'
homepage 'http://www.gnu.org/software/wdiff/'
md5 '8788b9bf7d5700237508bf3aec8a9493'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end