]> git.pld-linux.org Git - packages/perl-GnuPG-Interface.git/blob - perl-GnuPG-Interface.spec
Up to 1.02
[packages/perl-GnuPG-Interface.git] / perl-GnuPG-Interface.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4 #
5 %define         pdir    GnuPG
6 %define         pnam    Interface
7 Summary:        GnuPG::Interface - Perl interface to GnuPG
8 Summary(pl.UTF-8):      GnuPG::Interface - perlowy interfejs do GnuPG
9 Name:           perl-GnuPG-Interface
10 Version:        1.02
11 Release:        1
12 # same as perl
13 License:        GPL v1+ or Artistic
14 Group:          Development/Languages/Perl
15 Source0:        http://www.cpan.org/modules/by-module/GnuPG/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  3589cd8cc4b68c00e6cfd0b12daf52fc
17 URL:            http://search.cpan.org/dist/GnuPG-Interface/
18 BuildRequires:  gnupg
19 BuildRequires:  perl-devel >= 1:5.8.0
20 BuildRequires:  rpm-perlprov >= 4.1-13
21 %if %{with tests}
22 BuildRequires:  perl-Class-MethodMaker
23 BuildRequires:  perl-Moo
24 BuildRequires:  perl-MooX-late
25 BuildRequires:  perl-MooX-HandlesVia
26 BuildRequires:  perl-Moose
27 %endif
28 # not recognized by perl.req
29 Requires:       perl-Class-MethodMaker
30 Requires:       perl-Mouse
31 BuildArch:      noarch
32 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
33
34 %description
35 GnuPG::Interface and its associated modules are designed to provide an
36 object-oriented method for interacting with GnuPG, being able to
37 perform functions such as but not limited to encrypting, signing,
38 decryption, verification, and key-listing parsing.
39
40 %description -l pl.UTF-8
41 GnuPG::Interface i powiązane moduły powstały, by udostępnić obiektowo
42 zorientowany sposób na interakcję z GnuPG. Moduły mogą wykonywać
43 funkcje takie jak szyfrowanie, podpisywanie, odszyfrowywanie,
44 weryfikację, analizę list kluczy i inne.
45
46 %prep
47 %setup -q -n %{pdir}-%{pnam}-%{version}
48
49 %build
50 %{__perl} Makefile.PL \
51         INSTALLDIRS=vendor
52 %{__make}
53
54 %{?with_tests:TEST_SHARED_MEMORY=1 TEST_FILE_CACHE=1 %{__make} test}
55
56 %install
57 rm -rf $RPM_BUILD_ROOT
58
59 %{__make} install \
60         DESTDIR=$RPM_BUILD_ROOT
61
62 install -d $RPM_BUILD_ROOT%{perl_vendorlib}/%{pdir}/%{pnam}
63
64 %clean
65 rm -rf $RPM_BUILD_ROOT
66
67 %files
68 %defattr(644,root,root,755)
69 %doc README MANIFEST
70 %{perl_vendorlib}/GnuPG/*.pm
71 %{_mandir}/man3/*
This page took 0.07411 seconds and 3 git commands to generate.