homebrew-core/Formula/kdiff3.rb
Michael Vincent 0896eec88b kdiff3 0.9.97
Closes Homebrew/homebrew#14268.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-18 11:41:57 -05:00

15 lines
389 B
Ruby

require 'formula'
class Kdiff3 < Formula
homepage 'http://kdiff3.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.97/kdiff3-0.9.97.tar.gz'
md5 '30a71b474956c369ed7b38c6db080fc4'
depends_on 'qt'
def install
# configure builds the binary
system "./configure", "qt4"
bin.install "releaseQt/kdiff3.app/Contents/MacOS/kdiff3"
end
end