]> git.pld-linux.org Git - packages/perl-PAR-Dist.git/blob - perl-PAR-Dist.spec
90f08141b173ff5329e2a24624d36471129ba1b0
[packages/perl-PAR-Dist.git] / perl-PAR-Dist.spec
1 #
2 # Conditional build:
3 %bcond_without  test # do not perform "make test"
4 #
5 %include        /usr/lib/rpm/macros.perl
6 %define         pdir    PAR
7 %define         pnam    Dist
8 Summary:        PAR::Dist - create and manipulate PAR distributions
9 Summary(pl.UTF-8):      PAR::Dist - tworzenie i manipulacja dystrybucjami PAR
10 Name:           perl-PAR-Dist
11 Version:        0.48
12 Release:        1
13 # same as perl
14 License:        GPL v1+ or Artistic
15 Group:          Development/Languages/Perl
16 Source0:        http://www.cpan.org/modules/by-module/PAR/%{pdir}-%{pnam}-%{version}.tar.gz
17 # Source0-md5:  a3eac8fa3c21052c552f7792fac1b1a7
18 URL:            http://par.perl.org/
19 BuildRequires:  perl-devel >= 1:5.8.0
20 BuildRequires:  rpm-perlprov >= 4.1-13
21 BuildArch:      noarch
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 This module creates and manipulates PAR distributions.  They are
26 architecture-specific PAR files, containing everything under blib/ of
27 CPAN distributions after their "make" or "Build" stage, a META.yml
28 describing metadata of the original CPAN distribution, and a MANIFEST
29 detailing all files within it.  Digitally signed PAR distributions
30 will also contain a SIGNATURE file.
31
32 %description -l pl.UTF-8
33 Ten moduł tworzy i manipuluje dystrybucjami PAR. Są one zależnymi od
34 architektury plikami PAR. Zawierają wszystko to, co znajduje się
35 w katalogu blib/ dystrybucji CPAN po wykonaniu etapu "make" lub
36 "Build", plik META.yml opisujący metadane pierwotnej dystrybucji CPAN
37 oraz plik MANIFEST zawierający listę plików. Podpisane cyfrowo
38 dystrybucje PAR zawierają dodatkowo plik SIGNATURE.
39
40 %prep
41 %setup -q -n %{pdir}-%{pnam}-%{version}
42
43 %build
44 %{__perl} Makefile.PL \
45         INSTALLDIRS=vendor
46 %{__make}
47
48 %{?with_tests:%{__make} test}
49
50 %install
51 rm -rf $RPM_BUILD_ROOT
52
53 %{__make} install \
54         DESTDIR=$RPM_BUILD_ROOT
55
56 %clean
57 rm -rf $RPM_BUILD_ROOT
58
59 %files
60 %defattr(644,root,root,755)
61 %doc Changes README
62 %{perl_vendorlib}/PAR/*.pm
63 %{_mandir}/man3/*
This page took 0.086934 seconds and 2 git commands to generate.