aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/qca.rb
diff options
context:
space:
mode:
authorDavid Höppner2010-03-14 13:24:37 +0100
committerDavid Höppner2010-03-14 13:24:37 +0100
commit7e750414ea33ee64dec301ab5337bf990079783e (patch)
treec1e815772a575b8bd5b269d2fe6336d6c1abf2c2 /Library/Formula/qca.rb
parentfba57be866daf550c9e6b049aa3892566cd32bd3 (diff)
downloadhomebrew-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.rb14
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