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