aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mkclean.rb
diff options
context:
space:
mode:
authorNibbles 2bits2011-10-08 20:47:39 -0700
committerCharlie Sharpsteen2011-10-10 13:41:56 -0700
commit9572b6886c25ba3c55c90fd9cc6ca597e5c84c2f (patch)
treee3257e3fa3f816cf6f2f8ac8a925e2f35c5fe271 /Library/Formula/mkclean.rb
parent8ca163b8f0b2db06dd7bc39b21b318bfdd6c2dfb (diff)
downloadhomebrew-9572b6886c25ba3c55c90fd9cc6ca597e5c84c2f.tar.bz2
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 #8031. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula/mkclean.rb')
-rw-r--r--Library/Formula/mkclean.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/mkclean.rb b/Library/Formula/mkclean.rb
index 1295f6299..d7b70477c 100644
--- a/Library/Formula/mkclean.rb
+++ b/Library/Formula/mkclean.rb
@@ -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