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

class Testdisk <Formula
  url 'http://www.cgsecurity.org/testdisk-6.11.tar.bz2'
  homepage 'http://www.cgsecurity.org/wiki/TestDisk'
  md5 '11f8fe95dcd190b69b782efa65b29ba1'

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