95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
14 lines
484 B
Ruby
14 lines
484 B
Ruby
class Mp3check < Formula
|
|
desc "Tool to check mp3 files for consistency"
|
|
homepage "https://code.google.com/p/mp3check/"
|
|
url "https://mp3check.googlecode.com/files/mp3check-0.8.7.tgz"
|
|
sha256 "27d976ad8495671e9b9ce3c02e70cb834d962b6fdf1a7d437bb0e85454acdd0e"
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
# The makefile's install target is kinda iffy, but there's
|
|
# only one file to install so it's easier to do it ourselves
|
|
system "make"
|
|
bin.install "mp3check"
|
|
end
|
|
end
|