homebrew-core/Formula/mkclean.rb

22 lines
614 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Mkclean < Formula
2011-04-14 00:26:02 +00:00
url 'http://downloads.sourceforge.net/project/matroska/mkclean/mkclean-0.8.2.tar.bz2'
homepage 'http://www.matroska.org/downloads/mkclean.html'
2011-04-14 00:26:02 +00:00
md5 '3d2976101ed8fa7cacc2986bfbf20ce5'
def install
2011-03-07 06:01:58 +00:00
ENV.j1 # Otherwise there are races
2011-04-14 16:39:18 +00:00
# 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