aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libshout.rb
diff options
context:
space:
mode:
authornibbles 2bits2012-09-09 14:17:25 -0700
committerAdam Vandenberg2012-09-09 14:35:57 -0700
commitfed40dc8591cb24fc93b09feb3d1b1643e6d850f (patch)
treee272f9e4a957275631a56debea43db1276b961c9 /Library/Formula/libshout.rb
parent1a5df200bbf0eed2cc6cd0874ffdd82be462bf42 (diff)
downloadhomebrew-fed40dc8591cb24fc93b09feb3d1b1643e6d850f.tar.bz2
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 <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libshout.rb')
-rw-r--r--Library/Formula/libshout.rb7
1 files changed, 4 insertions, 3 deletions
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