08677feee3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
21 lines
614 B
Ruby
21 lines
614 B
Ruby
require 'formula'
|
|
|
|
class Mkclean < Formula
|
|
url 'http://downloads.sourceforge.net/project/matroska/mkclean/mkclean-0.8.4.tar.bz2'
|
|
homepage 'http://www.matroska.org/downloads/mkclean.html'
|
|
md5 '3f261d853c4d4f612da04d69cb4d136a'
|
|
|
|
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
|
|
|
|
system "./configure"
|
|
system "make -C mkclean"
|
|
bindir = `corec/tools/coremake/system_output.sh`.chomp
|
|
bin.install "release/#{bindir}/mkclean"
|
|
end
|
|
end
|