5c8bb17c97
The BCWipe software is intended to give you a confidence that your deleted files cannot be recovered by an intruder. BCWipe repeatedly overwrites special patterns to the files to be destroyed. BCWipe for UNIX offers several wiping schemas: U.S. DoD 5200.22M standard, German BCI/VSITR 7-pass scheme, U.S. DoE 3-pass scheme, Bruce Schneier's 7-pass scheme, Peter Gutmann's 35-pass scheme, as well as user defined schemes. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
372 B
Ruby
13 lines
372 B
Ruby
require 'formula'
|
|
|
|
class Bcwipe <Formula
|
|
url 'http://www.jetico.com/linux/BCWipe-1.9-6.tar.gz'
|
|
homepage 'http://www.jetico.com/linux/bcwipe-help/wu_intro.htm'
|
|
md5 'abe1ddf92284d585acf43d7e2d8b1593'
|
|
|
|
def install
|
|
ENV.gcc_4_0_1
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|