blob: a66facf671e048bd52566786897c859ea1f76605 (
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.4.tar.gz'
sha1 '73ead25efd41e238311aff9a566d6335c722792d'
depends_on 'qt'
def install
system "qmake", "-config", "release", "PREFIX=#{prefix}"
system "make"
system "make install"
end
end
|