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