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