aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorNibbles 2bits2012-02-14 02:16:51 -0800
committerJack Nagel2012-02-14 18:12:00 -0600
commit0192327f6e780cefe5e985252e2557cba5e53f6a (patch)
treedd2dfc5310ac8d5844fbb1778220eae99a0e5d92 /Library/Formula
parent712d797fbd4cf394470ec494d3478351d749cf37 (diff)
downloadhomebrew-0192327f6e780cefe5e985252e2557cba5e53f6a.tar.bz2
loudmouth 1.4.3-20111204
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 #10173. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/loudmouth.rb15
1 files changed, 8 insertions, 7 deletions
diff --git a/Library/Formula/loudmouth.rb b/Library/Formula/loudmouth.rb
index cfe807768..1c2c02bd4 100644
--- a/Library/Formula/loudmouth.rb
+++ b/Library/Formula/loudmouth.rb
@@ -1,19 +1,20 @@
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 'https://github.com/engineyard/loudmouth.git'
+ 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' => :optional
+ depends_on 'gnutls'
+ depends_on 'libidn'
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end