aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/scrub.rb
blob: dd981f550defea55322d05f8574b74eb56f2ab5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Scrub < Formula
  url 'http://diskscrub.googlecode.com/files/scrub-2.4.tar.bz2'
  homepage 'http://code.google.com/p/diskscrub/'
  sha1 '1065cde68549cd8b013f2b82bc5bb24922010da7'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end