homebrew-core/Formula/truecrack.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

33 lines
1.1 KiB
Ruby

class Truecrack < Formula
desc "Brute-force password cracker for TrueCrypt"
homepage "https://code.google.com/p/truecrack/"
url "https://truecrack.googlecode.com/files/truecrack_v35.tar.gz"
sha256 "25bf270fa3bc3591c3d795e5a4b0842f6581f76c0b5d17c0aef260246fe726b3"
version "3.5"
bottle do
cellar :any
sha1 "605d9c2eda636f918413f4ae3d9146bfa5168516" => :mavericks
sha1 "a320ed86f967c5b0e430c6506804f5a1574d3143" => :mountain_lion
sha1 "67c8b6637db713e7582f6db320fdc1926e7f531b" => :lion
end
# Fix missing return value compilation issue
# https://code.google.com/p/truecrack/issues/detail?id=41
patch do
url "https://gist.githubusercontent.com/anonymous/b912a1ede06eb1e8eb38/raw/1394a8a6bedb7caae8ee034f512f76a99fe55976/truecrack-return-value-fix.patch"
sha256 "8aa608054f9b822a1fb7294a5087410f347ba632bbd4b46002aada76c289ed77"
end
def install
system "./configure", "--enable-cpu",
"--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/truecrack"
end
end