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