aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mp3check.rb
blob: 5cee2e0143823bd543d76d961af2bb62738a6b8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end