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>
master
Alexis Hildebrandt 2010-08-14 13:32:43 +02:00 committed by Adam Vandenberg
parent 5062422fb9
commit edee541ccb
1 changed files with 19 additions and 0 deletions

19
Formula/loudmouth.rb Normal file
View File

@ -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