aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMHC122012-03-08 17:19:14 +0100
committerMax Howell2012-03-09 13:01:15 +0000
commit4e8261d147f34202e19d0ed3fdda3ba721a409a9 (patch)
treeede3c323e3bcacc3ef588f2ce1bfd38b4a117470 /Library/Formula
parentab183d81ece23d351849e197f275d8fe5a6e8496 (diff)
downloadhomebrew-4e8261d147f34202e19d0ed3fdda3ba721a409a9.tar.bz2
mpg123 1.13.5
Closes #10792. Signed-off-by: Max Howell <max@methylblue.com> I removed the comment associated with the redundant inreplace and added a comment asking why we do the relics bit.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mpg123.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/mpg123.rb b/Library/Formula/mpg123.rb
index ca35db663..b5899392d 100644
--- a/Library/Formula/mpg123.rb
+++ b/Library/Formula/mpg123.rb
@@ -1,9 +1,9 @@
require 'formula'
class Mpg123 < Formula
- url 'http://downloads.sourceforge.net/project/mpg123/mpg123/1.13.4/mpg123-1.13.4.tar.bz2'
+ url 'http://downloads.sourceforge.net/project/mpg123/mpg123/1.13.5/mpg123-1.13.5.tar.bz2'
homepage 'http://www.mpg123.de/'
- md5 '073620b3938c4cb9c4f70e8fe3e114b8'
+ sha1 '4dd627d36fce9d4be1268ac2ec4af04040af4385'
def skip_clean? path
# mpg123 can't find its plugins if there are no la files
@@ -25,10 +25,9 @@ class Mpg123 < Formula
system "./configure", *args
- # ./configure incorrectly detects 10.5 as 10.4; fix it.
['.', 'src', 'src/output', 'src/libmpg123'].each do |path|
inreplace "#{path}/Makefile" do |s|
- s.gsub! "-mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk", ""
+ # why do we do this?
s.change_make_var! "LDFLAGS", "-Wl,-read_only_relocs,suppress"
end
end