homebrew-core/Formula/qxmpp.rb

16 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