homebrew-core/Formula/quassel.rb
Deniz Türkoglu 32f4c23265 quassel 0.9.2
Trivial update of quassel to version 0.9.2. This release is rather
significant as it addresses a vulnerability. For more info see:

http://quassel-irc.org/node/123

Closes Homebrew/homebrew#26506.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-02-07 17:20:46 -06:00

17 lines
386 B
Ruby

require 'formula'
class Quassel < Formula
homepage 'http://www.quassel-irc.org/'
url 'http://www.quassel-irc.org/pub/quassel-0.9.2.tar.bz2'
sha1 'b32c76a4fc608c2e3a86a02456b4f4e996a815b3'
head 'https://github.com/quassel/quassel.git'
depends_on 'cmake' => :build
depends_on 'qt'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end