blob: 170af5e3914f0a39481cc15da21c70440360f0fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Qxmpp < Formula
homepage 'https://code.google.com/p/qxmpp/'
url 'http://qxmpp.googlecode.com/files/qxmpp-0.7.6.tar.gz'
sha1 'a87b4b5c94d1f4dc723cbbb7799cf4067c7e5ea2'
depends_on 'qt'
def install
system "qmake", "-config", "release", "PREFIX=#{prefix}"
system "make"
system "make install"
end
end
|