]> git.pld-linux.org Git - packages/aespipe.git/blob - aespipe.spec
- updated to 2.4g
[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.4g
5 Release:        1
6 License:        GPL, distributable
7 Group:          Applications/File
8 Source0:        https://loop-aes.sourceforge.net/aespipe/%{name}-v%{version}.tar.bz2
9 # Source0-md5:  c216c6c9e939fac69f859af0ad2fd8ef
10 URL:            https://loop-aes.sourceforge.net/
11 BuildRequires:  autoconf >= 2.50
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 %{__patch} --forward README < aes-GPL.diff || :
44
45 %build
46 %{__aclocal}
47 %{__autoconf}
48 %configure \
49 %ifarch %{ix86} %{x8664} x32
50         --enable-padlock \
51         --enable-intelaes \
52 %endif
53 %ifarch %{ix86}
54         --enable-asm=x86
55 %endif
56 %ifarch %{x8664}
57         --enable-asm=amd64
58 %endif
59
60 %{__make}
61
62 %install
63 rm -rf $RPM_BUILD_ROOT
64
65 %{__make} install \
66         DESTDIR=$RPM_BUILD_ROOT
67 install bz2aespipe $RPM_BUILD_ROOT%{_bindir}
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %files
73 %defattr(644,root,root,755)
74 %doc ChangeLog README
75 %attr(755,root,root) %{_bindir}/aespipe
76 %attr(755,root,root) %{_bindir}/bz2aespipe
77 %{_mandir}/man1/aespipe.1*
This page took 0.096115 seconds and 4 git commands to generate.