Qxmpp 0.3.92

Closes Homebrew/homebrew#11301.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Kyle Kauffman 2012-03-30 00:02:48 -04:00 committed by Adam Vandenberg
parent e86695ae39
commit 3a9a612ae4
1 changed files with 15 additions and 0 deletions

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