mp3check 0.8.4

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Daniel Salber 2011-04-20 17:37:51 +02:00 committed by Adam Vandenberg
parent 2e32628f28
commit 5e8dc1d189

14
Formula/mp3check.rb Normal file
View file

@ -0,0 +1,14 @@
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