diff options
| author | Kyle Kauffman | 2012-03-30 00:02:48 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-07-09 11:11:07 -0700 |
| commit | 66ce76dbb7fcf21182d53fa68c3c3c6a88cdbf19 (patch) | |
| tree | bd752f1442cb32bcde804a010f734add1dab289b /Library | |
| parent | 45da10114568a6705fb1d39fa853bb2dfe648eef (diff) | |
| download | homebrew-66ce76dbb7fcf21182d53fa68c3c3c6a88cdbf19.tar.bz2 | |
Qxmpp 0.3.92
Closes #11301.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/qxmpp.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/qxmpp.rb b/Library/Formula/qxmpp.rb new file mode 100644 index 000000000..7e8b56509 --- /dev/null +++ b/Library/Formula/qxmpp.rb @@ -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 |
