]> git.pld-linux.org Git - packages/perl-PGP-Sign.git/blob - perl-PGP-Sign.spec
- more %%{__make} macros.
[packages/perl-PGP-Sign.git] / perl-PGP-Sign.spec
1 %include        /usr/lib/rpm/macros.perl
2 Summary:        PGP-Sign perl module
3 Summary(pl):    Modu³ perla PGP-Sign
4 Name:           perl-PGP-Sign
5 Version:        0.16
6 Release:        1
7 License:        GPL
8 Group:          Development/Languages/Perl
9 Group(pl):      Programowanie/Jêzyki/Perl
10 Source0:        ftp://ftp.perl.org/pub/CPAN/modules/by-module/PGP/PGP-Sign-%{version}.tar.gz
11 BuildRequires:  rpm-perlprov >= 3.0.3-16
12 BuildRequires:  perl >= 5.005_03-14
13 BuildRequires:  gnupg
14 %requires_eq    perl
15 Requires:       %{perl_sitearch}
16 Requires:       gnupg
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 PGP-Sign - generates detached PGP signatures for data.
21
22 This package was built for using with GnuPG. If you want to use it
23 with PGP, you need to modify 'Global variables' section in the
24 PGP/Sign.pm file.
25
26 %description -l pl
27 PGP-Sign - generuje oddzielne sygnatury PGP dla danych.
28
29 Ten pakiet zosta³ zbudowany do u¿ycia z GnuPG. Je¶li chcesz u¿ywaæ go
30 z PGP, musisz zmodyfikowaæ sekcjê 'Global variables' w pliku
31 PGP/Sign.pm.
32
33 %prep
34 %setup -q -n PGP-Sign-%{version}
35
36 %build
37 perl Makefile.PL \
38         PGP=/usr/bin/gpg \
39         PGPSTYLE=GPG
40 %{__make}
41
42 %install
43 rm -rf $RPM_BUILD_ROOT
44 %{__make} install DESTDIR=$RPM_BUILD_ROOT
45
46 (
47   cd $RPM_BUILD_ROOT%{perl_sitearch}/auto/PGP/Sign
48   sed -e "s#$RPM_BUILD_ROOT##" .packlist >.packlist.new
49   mv .packlist.new .packlist
50 )
51
52 gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man3/* \
53         ChangeLog README TODO
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %doc {ChangeLog,README,TODO}.gz
61
62 %{perl_sitelib}/PGP/Sign.pm
63 %{perl_sitearch}/auto/PGP/Sign
64
65 %{_mandir}/man3/*
This page took 0.123318 seconds and 4 git commands to generate.