5e8dc1d189
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
386 B
Ruby
14 lines
386 B
Ruby
require 'formula'
|
|
|
|
class Mp3check < Formula
|
|
url 'http://jo.ath.cx/soft/mp3check/mp3check-0.8.4.tgz'
|
|
homepage 'http://jo.ath.cx/soft/mp3check/'
|
|
md5 'dcaf1926463d5dfb81bd8a96cd3f9ceb'
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|