]> git.pld-linux.org Git - packages/perl-Module-Pluggable-Fast.git/blob - perl-Module-Pluggable-Fast.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-Module-Pluggable-Fast.git] / perl-Module-Pluggable-Fast.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %define pdir    Module
6 %define pnam    Pluggable-Fast
7 Summary:        Module::Pluggable::Fast - Fast plugins with instantiation
8 Summary(pl.UTF-8):      Module::Pluggable::Fast - szybkie wtyczki z tworzeniem instancji
9 Name:           perl-Module-Pluggable-Fast
10 Version:        0.19
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/Module/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  e0eeb561a04bb4f28a4f06774bf315f2
17 URL:            http://search.cpan.org/dist/Module-Pluggable-Fast/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 %if %{with tests}
21 BuildRequires:  perl-UNIVERSAL-require
22 %endif
23 Requires:       perl-dirs >= 1.0-5
24 BuildArch:      noarch
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %description
28 This module is similar to Module::Pluggable but instantiates plugins
29 as soon as they're found, useful for code generators like
30 Class::DBI::Loader.
31
32 %description -l pl.UTF-8
33 Ten moduł jest podobny do Module::Pluggable, ale tworzy instancje
34 wtyczek zaraz po znalezieniu ich, co jest przydatne dla generatorów
35 kodu, takich jak Class::DBI::Loader.
36
37 %prep
38 %setup -q -n %{pdir}-%{pnam}-%{version}
39
40 %build
41 %{__perl} Makefile.PL \
42         INSTALLDIRS=vendor
43 %{__make}
44
45 %{?with_tests:%{__make} test}
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49
50 %{__make} install \
51         DESTDIR=$RPM_BUILD_ROOT
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %doc Changes README
59 %{perl_vendorlib}/Module/Pluggable/*.pm
60 %{_mandir}/man3/*
This page took 0.066844 seconds and 4 git commands to generate.