aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mkclean.rb30
1 files changed, 23 insertions, 7 deletions
diff --git a/Library/Formula/mkclean.rb b/Library/Formula/mkclean.rb
index d7b70477c..cb0b99584 100644
--- a/Library/Formula/mkclean.rb
+++ b/Library/Formula/mkclean.rb
@@ -5,17 +5,33 @@ class Mkclean < Formula
homepage 'http://www.matroska.org/downloads/mkclean.html'
sha1 'dd59c50178c5d1b11190e466c0562ac3cd64cd71'
- def install
- ENV.j1 # Otherwise there are races
-
- # For 64-bit kernels, just use the Snow Leopard SDK.
- inreplace "corec/tools/coremake/gcc_osx_x64.build" do |s|
- s.gsub! /10\.4u?/, "10.6"
- end
+ def patches
+ # Fixes compile error with with XCode-4.3+, a hardcoded /Developer. Reported as:
+ # https://sourceforge.net/tracker/?func=detail&aid=3505611&group_id=68739&atid=522228
+ DATA if MacOS.prefer_64_bit?
+ end
+ def install
+ ENV.deparallelize # Otherwise there are races
system "./configure"
system "make -C mkclean"
bindir = `corec/tools/coremake/system_output.sh`.chomp
bin.install Dir["release/#{bindir}/mk*"]
end
end
+
+__END__
+--- a/corec/tools/coremake/gcc_osx_x64.build 2011-09-25 02:25:46.000000000 -0700
++++ b/corec/tools/coremake/gcc_osx_x64.build 2012-03-15 16:27:46.000000000 -0700
+@@ -4,9 +4,9 @@
+
+ PLATFORMLIB = osx_x86
+ SVNDIR = osx_x86
+-SDK = /Developer/SDKs/MacOSX10.6.sdk
+
+-CCFLAGS=%(CCFLAGS) -arch x86_64 -mdynamic-no-pic -mmacosx-version-min=10.6
++
++CCFLAGS=%(CCFLAGS) -arch x86_64 -mdynamic-no-pic
+ ASMFLAGS = -f macho64 -D_MACHO
+
+ #include "gcc_osx.inc"