81b24e2547
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.
12 lines
335 B
Ruby
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
|