ae606aff4f
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>
14 lines
336 B
Ruby
14 lines
336 B
Ruby
require 'formula'
|
|
|
|
class Qca < Formula
|
|
homepage 'http://delta.affinix.com/qca/'
|
|
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}", "--disable-tests"
|
|
system "make install"
|
|
end
|
|
end
|