]> git.pld-linux.org Git - packages/aespipe.git/blob - aespipe.spec
- rel 1
[packages/aespipe.git] / aespipe.spec
1 Summary:        AES-encryption tool for tar/cpio and loop-aes images
2 Summary(pl):    Narzêdzie do szyfrowania AES dla tar/cpio i obrazów loop-aes
3 Name:           aespipe
4 Version:        2.2e
5 Release:        1
6 License:        GPL
7 Group:          Applications
8 Source0:        http://loop-aes.sourceforge.net/aespipe/%{name}-v%{version}.tar.bz2
9 # Source0-md5:  c31fc7d1f5ca5a82cd940e8e5c5195f1
10 URL:            http://loop-aes.sourceforge.net/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 aespipe is an encryption tool that reads from standard input and
17 writes to standard output. It uses the AES (Rijndael) cipher.
18
19 It can be used as an encryption filter, to create and restore
20 encrypted tar/cpio backup archives and to read/write and convert
21 loop-AES compatible encrypted images.
22
23 aespipe can be used for non-destructive in-place encryption of
24 existing disk partitions for use with the loop-AES encrypted loopback
25 kernel module.
26
27 %description -l pl
28 aespipe to narzêdzie do szyfrowania czytaj±ce ze standardowego wej¶cia
29 i pisz±ce na standardowe wyj¶cie. U¿ywa szyfru AES (Rijndael).
30
31 Mo¿e byæ u¿ywane jako filtr szyfruj±cy, do tworzenia i odtwarzania
32 zaszyfrowanych archiwów kopii zapasowych tar/cpio oraz do
33 zapisu/odczytu i konwersji zaszyfrowanych obrazów kompatybilnych z
34 loop-aes.
35
36 aespipe mo¿e byæ u¿ywane do niedestruktywnego szyfrowania "w miejscu"
37 istniej±cych partycji do u¿ywania z modu³em j±dra szyfrowanego systemu
38 plików po loopbacku loop-AES.
39
40 %prep
41 %setup -q -n %{name}-v%{version}
42
43 %build
44 %{__aclocal}
45 %{__autoconf}
46 %configure
47 %{__make} \
48 %ifarch %{amd64} 
49         amd64
50 %endif
51 %ifarch %{ix86}
52         x86
53 %endif
54
55 %install
56 rm -rf $RPM_BUILD_ROOT
57 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
58
59 install  aespipe $RPM_BUILD_ROOT%{_bindir}
60 install  bz2aespipe $RPM_BUILD_ROOT%{_bindir}
61 install  aespipe.1 $RPM_BUILD_ROOT%{_mandir}/man1
62
63 %clean
64 rm -rf $RPM_BUILD_ROOT
65
66 %files
67 %defattr(644,root,root,755)
68 %doc ChangeLog README
69 %attr(755,root,root) %{_bindir}/*
70 %{_mandir}/man1/*
This page took 0.041646 seconds and 3 git commands to generate.