homebrew-core/Formula/mkclean.rb

16 lines
453 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
system "./configure"
system "make -C mkclean"
bindir = `corec/tools/coremake/system_output.sh`.chomp
bin.install "release/#{bindir}/mkclean"
end
end