homebrew-core/Formula/qxmpp.rb
Brett Koonce 5a66065fda qxmpp 0.6.3
Closes Homebrew/homebrew#13725.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-29 10:41:50 -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.6.3.tar.gz'
sha1 '51eb686677b26fa2fd756bc755956c0bf84193ea'
depends_on 'qt'
def install
system "qmake", "-config", "release", "PREFIX=#{prefix}"
system "make"
system "make install"
end
end