2011-04-20 15:37:51 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mp3check < Formula
|
2012-08-02 02:44:30 +00:00
|
|
|
homepage 'http://code.google.com/p/mp3check/'
|
2014-03-05 07:22:08 +00:00
|
|
|
url 'https://mp3check.googlecode.com/files/mp3check-0.8.7.tgz'
|
2012-08-02 02:44:30 +00:00
|
|
|
sha1 '31fe95bb7949343f6ebc04fcaa2faffd2b738264'
|
2011-04-20 15:37:51 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
2013-10-10 17:34:01 +00:00
|
|
|
# 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'
|
2011-04-20 15:37:51 +00:00
|
|
|
end
|
|
|
|
end
|