homebrew-core/Formula/quassel.rb
Deniz Türkoglu f87440bde8 quassel 0.10.0
This release brings a new protocol with compression and snore
notification backend. For a full changelog see;

https://github.com/quassel/quassel/blob/0.10/ChangeLog

Closes Homebrew/homebrew#28426.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-04-15 14:12:14 -05:00

17 lines
383 B
Ruby

require 'formula'
class Quassel < Formula
homepage 'http://www.quassel-irc.org/'
url 'http://quassel-irc.org/pub/quassel-0.10.0.tar.bz2'
sha1 '305d56774b1af2a891775a5637174d9048d875a7'
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