edee541ccb
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>
19 lines
516 B
Ruby
19 lines
516 B
Ruby
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
|