2010-03-14 12:24:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Qca < Formula
|
2010-03-14 12:24:37 +00:00
|
|
|
homepage 'http://delta.affinix.com/qca/'
|
2012-06-18 16:07:43 +00:00
|
|
|
url 'http://delta.affinix.com/download/qca/2.0/qca-2.0.3.tar.bz2'
|
|
|
|
sha1 '9c868b05b81dce172c41b813de4de68554154c60'
|
2010-03-14 12:24:37 +00:00
|
|
|
|
|
|
|
depends_on 'qt'
|
|
|
|
|
2013-12-10 12:04:54 +00:00
|
|
|
# Fix for clang adhering strictly to standard, see:
|
|
|
|
# http://clang.llvm.org/compatibility.html#dep_lookup_bases
|
2012-09-26 22:54:30 +00:00
|
|
|
def patches
|
2013-12-10 12:04:54 +00:00
|
|
|
'http://quickgit.kde.org/?p=qca.git&a=commitdiff&h=312b69&o=plain'
|
2012-09-26 22:54:30 +00:00
|
|
|
end
|
|
|
|
|
2010-03-14 12:24:37 +00:00
|
|
|
def install
|
2012-06-18 16:07:43 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-tests"
|
2010-03-14 12:24:37 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|