homebrew-core/Formula/qxmpp.rb
Brett Koonce aa1cbd1bfc qxmpp 0.7.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-25 21:16:59 -07:00

15 lines
347 B
Ruby

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