blob: f654ab1a0312378342ef8a31830e8f1c5fb84bdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#
# gnupg -- gnu privacy guard
# This is a template. The dist target uses it to create the real file.
#
Summary: GPL public key crypto
Name: gnupg
Version: @pkg_version@
Release: 3
Copyright: GPL
Group: Applications/Cryptography
Source: ftp://ftp.guug.de/pub/gcrypt/
URL: http://www.d.shuttle.de/isil/crypt/gnupg.html
Vendor: TechnoCage
Packager: Caskey L. Dickson <caskey-at-technocage.com>
Provides: gpg openpgp
%description
GNUPG is a complete and free replacement for PGP. Because it does not use
IDEA or RSA it can be used without any restrictions. GNUPG is nearly in
compliance with the OpenPGP draft.
%prep
rm -rf $RPM_BUILD_DIR/gnupg-@pkg_version@
tar -xvzf $RPM_SOURCE_DIR/gnupg-@[email protected]
%build
cd gnupg-@pkg_version@
chown -R root.root *
./configure --prefix=/usr
make
%install
cd gnupg-@pkg_version@
make install
%files
%doc gnupg-@pkg_version@/doc/DETAILS
%doc gnupg-@pkg_version@/INSTALL
%doc gnupg-@pkg_version@/doc/rfcs
%doc gnupg-@pkg_version@/AUTHORS
%doc gnupg-@pkg_version@/ABOUT-NLS
%doc gnupg-@pkg_version@/COPYING
%doc gnupg-@pkg_version@/ChangeLog
%doc gnupg-@pkg_version@/NEWS
%doc gnupg-@pkg_version@/README
%doc gnupg-@pkg_version@/THANKS
%doc gnupg-@pkg_version@/TODO
/usr/man/man1/gpg.1
/usr/bin/gpg
/usr/bin/gpgm
/usr/share/locale/en/LC_MESSAGES/gnupg.mo
/usr/share/locale/de/LC_MESSAGES/gnupg.mo
/usr/share/locale/it/LC_MESSAGES/gnupg.mo
/usr/share/locale/fr/LC_MESSAGES/gnupg.mo
/usr/lib/gnupg/tiger
/usr/lib/gnupg/twofish
%attr (4755,root,root) /usr/bin/gpg
%attr (4755,root,root) /usr/bin/gpgm
|