1Name: srm
2Version: 1.2.8
3Release: 1
4License: X11
5URL: http://srm.sourceforge.net
6Group: Applications/File
7Vendor: Matt Gauthier <elleron@attbi.com>
8Packager: %{vendor}
9
10Prefix: /usr
11Prefix: /usr/local
12Buildroot: /tmp/%{name}.buildroot
13Source: %{name}-%{version}.tar.gz
14
15Summary: srm (secure rm) is a command-line compatible rm(1) which destroys file contents before unlinking.
16
17%description
18This is srm, a secure replacement for rm(1). Unlike the standard rm,
19it overwrites the data in the target files before unlinking them.
20This prevents command-line recovery of the data by examining the raw
21block device. It may also help frustrate physical examination of the
22disk, although it's unlikely that it completely protects against this
23type of recovery.
24%prep
25%setup
26./configure
27
28%build
29make
30
31%install
32make prefix=%{buildroot}/usr install
33
34%clean
35rm -rf %{buildroot}
36make clean
37
38%files
39%attr(-, root, root) /usr/bin/srm
40%attr(-, root, root) %doc /usr/man/man1/*
41
42