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

class Testdisk < Formula
  homepage 'http://www.cgsecurity.org/wiki/TestDisk'
  url 'http://www.cgsecurity.org/testdisk-6.13.tar.bz2'
  sha1 'b08ace0257e3e437b6fc140360d75807ca4d46ae'

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