]> git.pld-linux.org Git - packages/ccrypt.git/blob - ccrypt.spec
- 1.7
[packages/ccrypt.git] / ccrypt.spec
1 Summary:        Secure encryption and decryption of files and streams
2 Summary(pl):    Bezpieczne szyfrowanie i odszyfrowywanie plików i strumieni
3 Name:           ccrypt
4 Version:        1.7
5 Release:        1
6 License:        GPL
7 Group:          Applications/System
8 Source0:        http://dl.sourceforge.net/ccrypt/%{name}-%{version}.tar.gz
9 # Source0-md5:  19526e31a7d234e29d54dbcc876605d5
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 URL:            http://ccrypt.sourceforge.net/
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 ccrypt is a utility for encrypting and decrypting files and streams.
17 It was designed to replace the standard unix crypt utility, which is
18 notorious for using a very weak encryption algorithm. ccrypt is based
19 on the Rijndael date for the Advanced Encryption Standard (AES). This
20 cipher is believed to provide very strong security.
21
22 %description -l pl
23 ccrypt jest narzêdziem do szyfrowania i odszyfrowywania plików oraz
24 strumieni. Zosta³o opracowane by zast±piæ standardowe narzêdzie
25 uniksowe crypt, które u¿ywa bardzo s³abego algorytmu szyfrowania.
26 ccrypt bazuje na Rijndael AES (Advanced Encryption Standard). Ten
27 szyfr jest uwa¿any za daj±cy du¿e bezpieczeñstwo.
28
29 %prep
30 %setup -q
31
32 %build
33 rm -f missing
34 %{__aclocal}
35 %{__autoconf}
36 %{__automake}
37 %configure
38 %{__make}
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42
43 %{__make} install \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 echo ".so ccrypt.1." > $RPM_BUILD_ROOT%{_mandir}/man1/ccat.1
47 echo ".so ccrypt.1." > $RPM_BUILD_ROOT%{_mandir}/man1/ccdecrypt.1
48 echo ".so ccrypt.1." > $RPM_BUILD_ROOT%{_mandir}/man1/ccencrypt.1
49
50 %clean
51 rm -rf $RPM_BUILD_ROOT
52
53 %files
54 %defattr(644,root,root,755)
55 %doc AUTHORS ChangeLog NEWS README doc/cypfaq01.txt
56 %attr(755,root,root) %{_bindir}/*
57 %{_mandir}/man1/*
This page took 0.148974 seconds and 3 git commands to generate.