blob: b43572d8333e8bcbbfeb9af82c32e88787506f85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Mp3check < Formula
homepage 'http://code.google.com/p/mp3check/'
url 'http://mp3check.googlecode.com/files/mp3check-0.8.7.tgz'
sha1 '31fe95bb7949343f6ebc04fcaa2faffd2b738264'
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
|