aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mp3check.rb
blob: ab2be273fe51697a037ad7f9e146d2c3767fd131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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