Qxmpp 0.3.92

Closes Homebrew/homebrew#11301.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Kyle Kauffman 2012-03-30 00:02:48 -04:00 committed by Adam Vandenberg
parent e86695ae39
commit 3a9a612ae4

15
Formula/qxmpp.rb Normal file
View file

@ -0,0 +1,15 @@
require 'formula'
class Qxmpp < Formula
homepage 'https://code.google.com/p/qxmpp/'
url 'http://qxmpp.googlecode.com/files/qxmpp-0.3.92.tar.gz'
sha1 'a21fbe5efc491b716d77c6796b9db560c2604525'
depends_on 'qt'
def install
system "qmake", "-config", "release", "PREFIX=#{prefix}"
system "make"
system "make install"
end
end