aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlexis Hildebrandt2010-08-14 13:32:43 +0200
committerAdam Vandenberg2010-08-15 16:03:42 -0700
commit2ac7753c19d2b55f49c17a8ed1ddc77fa0cbbd4f (patch)
tree719dfbd636980e91d2aefab95c9f48dc0de4750b /Library/Formula
parent598b54ec6a9017a3563adc0322c31b1c3f7f138c (diff)
downloadhomebrew-2ac7753c19d2b55f49c17a8ed1ddc77fa0cbbd4f.tar.bz2
New Formula: loudmouth
An asynchronous XMPP library A lightweight and easy-to-use C library for programming with the Jabber protocol. It's designed to be easy to get started with and yet extensible to let you do anything the Jabber protocol allows. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/loudmouth.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/loudmouth.rb b/Library/Formula/loudmouth.rb
new file mode 100644
index 000000000..229e281c7
--- /dev/null
+++ b/Library/Formula/loudmouth.rb
@@ -0,0 +1,19 @@
+require 'formula'
+
+class Loudmouth <Formula
+ url 'http://mcabber.com/files/loudmouth-1.4.3+gitb5a9de5b.20100413.tar.bz2'
+ version '1.5.0-pre'
+ homepage 'http://www.loudmouth-project.org/'
+ md5 'd9693855e1d8226144937decd25633d2'
+
+ head 'git://github.com/engineyard/loudmouth.git'
+
+ depends_on 'pkg-config'
+ depends_on 'glib'
+ depends_on 'gnutls' => :optional
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end