qca 2.0.3

Upgrade qca to version 2.0.3.
Add `--disable-tests` to stop building the unittests and examples.
Tested on Lion with clang and llvm from XCode-4.3.3.

Closes Homebrew/homebrew#12908.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
nibbles 2bits 2012-06-18 09:07:43 -07:00 committed by Jack Nagel
parent 0ce2e27d94
commit ae606aff4f

View file

@ -1,14 +1,14 @@
require 'formula' require 'formula'
class Qca < 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/' homepage 'http://delta.affinix.com/qca/'
md5 '27ebdfbd9869d90dae078a6decd029f4' url 'http://delta.affinix.com/download/qca/2.0/qca-2.0.3.tar.bz2'
sha1 '9c868b05b81dce172c41b813de4de68554154c60'
depends_on 'qt' depends_on 'qt'
def install def install
system "./configure", "--prefix=#{prefix}" system "./configure", "--prefix=#{prefix}", "--disable-tests"
system "make install" system "make install"
end end
end end