aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/qca.rb
blob: 09a220ec227ddad0a15eaf7037d51ae20ed9f25a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Qca <Formula
  url 'http://delta.affinix.com/download/qca/2.0/qca-2.0.2.tar.bz2'
  homepage 'http://delta.affinix.com/qca/'
  md5 '27ebdfbd9869d90dae078a6decd029f4'

  depends_on 'qt'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end