e1520f2b2c
Update to 0.9.1, which is a 'mandatory' update for many of those using the core part of Quassel. See http://quassel-irc.org/node/120. Remove patches entirely as they are not recommended by upstream Quassel or Qt. Closes Homebrew/homebrew#23417. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
17 lines
385 B
Ruby
17 lines
385 B
Ruby
require 'formula'
|
|
|
|
class Quassel < Formula
|
|
homepage 'http://www.quassel-irc.org/'
|
|
url 'http://www.quassel-irc.org/pub/quassel-0.9.1.tar.bz2'
|
|
sha1 '82bc8ad2f5c0d61a8ec616b84df0504589f19371'
|
|
|
|
head 'git://git.quassel-irc.org/quassel.git'
|
|
|
|
depends_on 'cmake' => :build
|
|
depends_on 'qt'
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make install"
|
|
end
|
|
end
|