b5362f1970
Upgrade loudmouth to version 1.4.3-20111204. Set the version string to 1.4.3.111204 so it is unique. Remove the optional argument against gnutls and add a dep on libidn because loudmouth prefers to build with those, and they support the use of crypto and libotr in mcabber. Closes Homebrew/homebrew#10173. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
20 lines
536 B
Ruby
20 lines
536 B
Ruby
require 'formula'
|
|
|
|
class Loudmouth < Formula
|
|
homepage 'http://www.loudmouth-project.org/'
|
|
url 'http://mcabber.com/files/loudmouth-1.4.3-20111204.tar.bz2'
|
|
sha1 '38010a74d28fa06624b7461e515aec47c0ff140e'
|
|
version '1.4.3.111204'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'glib'
|
|
depends_on 'gnutls'
|
|
depends_on 'libidn'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|