]> git.pld-linux.org Git - packages/aespipe.git/blame - aespipe.spec
- init PLD spec
[packages/aespipe.git] / aespipe.spec
CommitLineData
33439464 1Summary: AES-encryption tool for tar/cpio and loop-aes images
2Name: aespipe
3Version: 2.2d
4Release: 0.1
5License: GPL
6Group: Applications
7Source0: http://loop-aes.sourceforge.net/aespipe/%{name}-v%{version}.tar.bz2
8# Source0-md5: d7f2acc68062ffc5dc71c01f5c5b8af7
9URL: http://loop-aes.sourceforge.net/
10BuildRequires: autoconf
11BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13%description
14aespipe is an encryption tool that reads from standard input and
15writes to standard output. It uses the AES (Rijndael) cipher.
16
17It can be used as an encryption filter, to create and restore
18encrypted tar/cpio backup archives and to read/write and convert
19loop-AES compatible encrypted images.
20
21aespipe can be used for non-destructive in-place encryption of
22existing disk partitions for use with the loop-AES encrypted loopback
23kernel module.
24
25%prep
26%setup -q -n %{name}-v%{version}
27
28%build
29%{__aclocal}
30%{__autoconf}
31%configure
32%{__make} \
33%ifarch %{amd64}
34 amd64
35%endif
36%ifarch %{ix86}
37 x86
38%endif
39
40%install
41rm -rf $RPM_BUILD_ROOT
42
43install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
44
45install aespipe $RPM_BUILD_ROOT%{_bindir}
46install bz2aespipe $RPM_BUILD_ROOT%{_bindir}
47install aespipe.1 $RPM_BUILD_ROOT%{_mandir}/man1
48
49%clean
50rm -rf $RPM_BUILD_ROOT
51
52%files
53%defattr(644,root,root,755)
54%doc ChangeLog README
55%attr(755,root,root) %{_bindir}/*
56%attr(644,root,root) %{_mandir}/man1/*
This page took 0.20379 seconds and 4 git commands to generate.