]> 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.9
5 Release:        1
6 License:        GPL
7 Group:          Applications/System
8 Source0:        http://downloads.sourceforge.net/ccrypt/%{name}-%{version}.tar.gz
9 # Source0-md5:  c3f78019d7a166dd66f1d4b1390c62c2
10 URL:            http://ccrypt.sourceforge.net/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  gettext-tools
14 BuildRequires:  intltool
15 BuildRequires:  libtool
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.UTF-8
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
35 %build
36 rm -f missing
37 %{__intltoolize}
38 %{__libtoolize}
39 %{__aclocal}
40 %{__autoconf}
41 %{__automake}
42 %configure
43 %{__make}
44
45 %install
46 rm -rf $RPM_BUILD_ROOT
47
48 %{__make} install \
49         DESTDIR=$RPM_BUILD_ROOT
50
51 echo ".so ccrypt.1." > $RPM_BUILD_ROOT%{_mandir}/man1/ccat.1
52 echo ".so ccrypt.1." > $RPM_BUILD_ROOT%{_mandir}/man1/ccdecrypt.1
53 echo ".so ccrypt.1." > $RPM_BUILD_ROOT%{_mandir}/man1/ccencrypt.1
54
55 %find_lang %{name}
56
57 %clean
58 rm -rf $RPM_BUILD_ROOT
59
60 %files -f %{name}.lang
61 %defattr(644,root,root,755)
62 %doc AUTHORS ChangeLog NEWS README doc/cypfaq01.txt
63 %attr(755,root,root) %{_bindir}/*
64 %{_mandir}/man1/*
This page took 0.105188 seconds and 3 git commands to generate.