]> git.pld-linux.org Git - packages/ccrypt.git/blob - ccrypt.spec
- regenerate ac/am files and switch to using %%configure macro and DESTDIR
[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 Group(de):      Applikationen/System
9 Group(pl):      Aplikacje/System
10 Source0:        http://ccrypt.sourceforge.net/download/%{name}-%{version}.tar.gz
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 URL:            http://ccrypt.sourceforge.net/
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
33 %build
34 rm -f missing
35 aclocal
36 autoconf
37 automake -a -c
38 %configure
39 %{__make}
40
41 %install
42 rm -rf $RPM_BUILD_ROOT
43
44 %{__make} install \
45         DESTDIR=$RPM_BUILD_ROOT
46
47 echo ".so ccrypt.1." > $RPM_BUILD_ROOT%{_mandir}/man1/ccat.1
48 echo ".so ccrypt.1." > $RPM_BUILD_ROOT%{_mandir}/man1/ccdecrypt.1
49 echo ".so ccrypt.1." > $RPM_BUILD_ROOT%{_mandir}/man1/ccencrypt.1
50
51 gzip -9nf AUTHORS ChangeLog NEWS README doc/cypfaq01.txt
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %doc *.gz doc/*gz
59 %attr(755,root,root) %{_bindir}/*
60 %{_mandir}/man1/*
This page took 0.224956 seconds and 4 git commands to generate.