aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/kdiff3.rb
blob: 753af8052bfa279c5119277d0fa1263cde6be8e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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