aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authornibbles 2bits2012-06-18 09:07:43 -0700
committerJack Nagel2012-06-26 20:02:47 -0500
commit844028baa73cdfc80e3f47d1c52f20cf6b0a6b8f (patch)
tree343db71b2fa8a71654286e155d0cb019ea8adf4c /Library/Formula
parentc5ff947041d24b1b6734a17ba67fd5d74fec4281 (diff)
downloadhomebrew-844028baa73cdfc80e3f47d1c52f20cf6b0a6b8f.tar.bz2
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 #12908. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/qca.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/qca.rb b/Library/Formula/qca.rb
index 1a657b913..36176a70d 100644
--- a/Library/Formula/qca.rb
+++ b/Library/Formula/qca.rb
@@ -1,14 +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'
+ url 'http://delta.affinix.com/download/qca/2.0/qca-2.0.3.tar.bz2'
+ sha1 '9c868b05b81dce172c41b813de4de68554154c60'
depends_on 'qt'
def install
- system "./configure", "--prefix=#{prefix}"
+ system "./configure", "--prefix=#{prefix}", "--disable-tests"
system "make install"
end
end