]> git.pld-linux.org Git - packages/dcfldd.git/blob - dcfldd.spec
- use %configure (CFLAGS were not passed anyway), cosmetics
[packages/dcfldd.git] / dcfldd.spec
1 Summary:        Enhanced version of GNU dd with features useful for forensics
2 Name:           dcfldd
3 Version:        1.3.4
4 Release:        1
5 License:        GPL v2
6 Group:          Applications/System
7 Source0:        http://dl.sourceforge.net/dcfldd/%{name}-%{version}-1.tar.gz
8 # Source0-md5:  952026c872f11b53ce0ec6681a3eef0a
9 URL:            http://dcfldd.sourceforge.net/
10 BuildRequires:  rpmbuild(macros) >= 1.167
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 dcfldd is an enhanced version of GNU dd with features useful for
15 forensics and security. Based on the dd program found in the GNU
16 Coreutils package, dcfldd has the following additional features:
17
18 - Hashing on-the-fly - dcfldd can hash the input data as it is being
19   transferred, helping to ensure data integrity.
20 - Status output - dcfldd can update the user of its progress in terms
21   of the amount of data transferred and how much longer operation will
22   take.
23 - Flexible disk wipes - dcfldd can be used to wipe disks quickly and
24   with a known pattern if desired.
25 - Image/wipe Verify - dcfldd can verify that a target drive is a
26   bit-for-bit match of the specified input file or pattern.
27 - Multiple outputs - dcfldd can output to multiple files or disks at
28   the same time.
29 - Split output - dcfldd can split output to multiple files with more
30   configurability than the split command.
31 - Piped output and logs - dcfldd can send all its log data and output
32   to commands as well as files natively.
33
34 %prep
35 %setup -q -n %{name}-%{version}-1
36
37 %build
38 %configure
39
40 %{__make}
41
42 %install
43 rm -rf $RPM_BUILD_ROOT
44
45 %{__make} install install-man \
46         DESTDIR=$RPM_BUILD_ROOT
47
48 %clean
49 rm -rf $RPM_BUILD_ROOT
50
51 %files
52 %defattr(644,root,root,755)
53 %doc AUTHORS ChangeLog NEWS README
54 %attr(755,root,root) %{_bindir}/dcfldd
55 %{_mandir}/man1/*
This page took 0.069947 seconds and 4 git commands to generate.