diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/qca.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/qca.rb b/Library/Formula/qca.rb new file mode 100644 index 000000000..09a220ec2 --- /dev/null +++ b/Library/Formula/qca.rb @@ -0,0 +1,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 |
