]> git.pld-linux.org Git - packages/aespipe.git/blob - aespipe.spec
- 2.3d
[packages/aespipe.git] / aespipe.spec
1 Summary:        AES-encryption tool for tar/cpio and loop-aes images
2 Summary(pl.UTF-8):      Narzędzie do szyfrowania AES dla tar/cpio i obrazów loop-aes
3 Name:           aespipe
4 Version:        2.3d
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:  9b5369ab2c0d5439b7cd09d61d6ef479
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.UTF-8
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.099507 seconds and 3 git commands to generate.