From fed40dc8591cb24fc93b09feb3d1b1643e6d850f Mon Sep 17 00:00:00 2001 From: nibbles 2bits Date: Sun, 9 Sep 2012 14:17:25 -0700 Subject: libshout: fix sha1, use official url libshout fails sha1 check when trying to install it. - Change to the download url given on their webpage (no .us.) - Fix the sha1 hash. Both old and new urls have this hash. - Compiles well using clang and superenv. Closes #14823. Signed-off-by: Adam Vandenberg --- Library/Formula/libshout.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Library/Formula/libshout.rb') diff --git a/Library/Formula/libshout.rb b/Library/Formula/libshout.rb index da3c97666..e0d41b2ce 100644 --- a/Library/Formula/libshout.rb +++ b/Library/Formula/libshout.rb @@ -1,9 +1,9 @@ require 'formula' class Libshout < Formula - url 'http://downloads.us.xiph.org/releases/libshout/libshout-2.2.2.tar.gz' homepage 'http://www.icecast.org/' - sha1 'cabc409e63f55383f4d85fac26d3056bf0365aac' + url 'http://downloads.xiph.org/releases/libshout/libshout-2.3.1.tar.gz' + sha1 '147c5670939727420d0e2ad6a20468e2c2db1e20' depends_on 'pkg-config' => :build depends_on 'libogg' @@ -13,7 +13,8 @@ class Libshout < Formula depends_on 'speex' => :optional def install - system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" system "make install" end end -- cgit v1.2.3