blob: 38acd8c471899998b32aeec20fc1b73ecc434e00 (
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.6.3.tar.gz'
sha1 '51eb686677b26fa2fd756bc755956c0bf84193ea'
depends_on 'qt'
def install
system "qmake", "-config", "release", "PREFIX=#{prefix}"
system "make"
system "make install"
end
end
|