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.
master
David Höppner 2010-03-14 13:24:37 +01:00
parent bc496f0551
commit 1f2432e9f7
1 changed files with 14 additions and 0 deletions

14
Formula/qca.rb Normal file
View File

@ -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