mkclean 0.8.6

This updates mkclean to 0.8.6 and modifies the one install command
so that all three binaries it builds get installed, namely:
mkclean, mkcleanreg, and mkWDclean.  It compiles and tests
using llvm-2335, gcc-4.2.1, and clang-2.0.

Closes Homebrew/homebrew#8031.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
This commit is contained in:
Nibbles 2bits 2011-10-08 20:47:39 -07:00 committed by Charlie Sharpsteen
parent ba555590e4
commit 6d69db875c

View file

@ -1,9 +1,9 @@
require 'formula'
class Mkclean < Formula
url 'http://downloads.sourceforge.net/project/matroska/mkclean/mkclean-0.8.5.tar.bz2'
url 'http://downloads.sourceforge.net/project/matroska/mkclean/mkclean-0.8.6.tar.bz2'
homepage 'http://www.matroska.org/downloads/mkclean.html'
md5 'eb1bd84aba2b496efcd61e67cbf2502e'
sha1 'dd59c50178c5d1b11190e466c0562ac3cd64cd71'
def install
ENV.j1 # Otherwise there are races
@ -16,6 +16,6 @@ class Mkclean < Formula
system "./configure"
system "make -C mkclean"
bindir = `corec/tools/coremake/system_output.sh`.chomp
bin.install "release/#{bindir}/mkclean"
bin.install Dir["release/#{bindir}/mk*"]
end
end