blob: 36176a70d3060e90e33a02623a1854c2572b1c74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Qca < Formula
homepage 'http://delta.affinix.com/qca/'
url 'http://delta.affinix.com/download/qca/2.0/qca-2.0.3.tar.bz2'
sha1 '9c868b05b81dce172c41b813de4de68554154c60'
depends_on 'qt'
def install
system "./configure", "--prefix=#{prefix}", "--disable-tests"
system "make install"
end
end
|