aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/qxmpp.rb
blob: abba514b4d69a346879c258a0cca7f2d7898a454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require "formula"

class Qxmpp < Formula
  homepage "https://github.com/qxmpp-project/qxmpp/"
  url "https://github.com/qxmpp-project/qxmpp/archive/v0.8.0.tar.gz"
  sha1 "2b44f68e9e5ef127728819f051becbc207ad78e2"

  depends_on "qt"

  def install
    system "qmake", "-config", "release", "PREFIX=#{prefix}"
    system "make"
    system "make install"
  end
end