blob: a3e1a07ca18c70d6a57c6cfd7526973f84c2b916 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Tkdiff < Formula
homepage 'http://tkdiff.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/tkdiff/tkdiff/4.2/tkdiff-4.2.tar.gz'
md5 'efc19226416afe3e98e4a29c112cfc3e'
def install
bin.install 'tkdiff'
end
def test
system "#{bin}/tkdiff", "--help"
end
end
|