2010-08-14 11:32:43 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Loudmouth < Formula
|
2010-08-14 11:32:43 +00:00
|
|
|
homepage 'http://www.loudmouth-project.org/'
|
2012-02-14 10:16:51 +00:00
|
|
|
url 'http://mcabber.com/files/loudmouth-1.4.3-20111204.tar.bz2'
|
|
|
|
sha1 '38010a74d28fa06624b7461e515aec47c0ff140e'
|
|
|
|
version '1.4.3.111204'
|
2010-08-14 11:32:43 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-08-14 11:32:43 +00:00
|
|
|
depends_on 'glib'
|
2012-02-14 10:16:51 +00:00
|
|
|
depends_on 'gnutls'
|
|
|
|
depends_on 'libidn'
|
2010-08-14 11:32:43 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-14 10:16:51 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-08-14 11:32:43 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|