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