diff options
| author | David Höppner | 2010-03-14 13:24:37 +0100 |
|---|---|---|
| committer | David Höppner | 2010-03-14 13:24:37 +0100 |
| commit | 7e750414ea33ee64dec301ab5337bf990079783e (patch) | |
| tree | c1e815772a575b8bd5b269d2fe6336d6c1abf2c2 /Library/Formula/qca.rb | |
| parent | fba57be866daf550c9e6b049aa3892566cd32bd3 (diff) | |
| download | homebrew-7e750414ea33ee64dec301ab5337bf990079783e.tar.bz2 | |
New formula Qt Cryptographic Architecture (QCA)
QCA aims to provide a straightforward and cross-platform crypto API,
using Qt datatypes and conventions. QCA separates the API from the
implementation, using plugins known as Providers.
Diffstat (limited to 'Library/Formula/qca.rb')
| -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 |
