]> git.pld-linux.org Git - packages/perl-PPI-HTML.git/blob - perl-PPI-HTML.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-PPI-HTML.git] / perl-PPI-HTML.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %define         pdir    PPI
6 %define         pnam    HTML
7 Summary:        PPI::HTML - Generate syntax-hightlighted HTML for Perl using PPI
8 Summary(pl.UTF-8):      PPI::HTML - generowanie HTML-a z podświetlaniem składni dla Perla z PPI
9 Name:           perl-PPI-HTML
10 Version:        1.08
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/PPI/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  7485ae90643992f410fba6ba6573872f
17 URL:            http://search.cpan.org/dist/PPI-HTML/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 %if %{with tests}
21 BuildRequires:  perl-CSS-Tiny >= 1.10
22 BuildRequires:  perl-PPI >= 0.990
23 BuildRequires:  perl-Params-Util >= 0.05
24 %endif
25 Requires:       perl-CSS-Tiny >= 1.10
26 Requires:       perl-PPI >= 0.990
27 Requires:       perl-Params-Util >= 0.05
28 BuildArch:      noarch
29 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
30
31 %description
32 PPI::HTML converts Perl documents into syntax highlighted HTML pages.
33
34 %description -l pl.UTF-8
35 PPI::HTML konwertuje dokumenty Perla do stron HTML z podświetlaniem
36 składni.
37
38 %prep
39 %setup -q -n %{pdir}-%{pnam}-%{version}
40
41 %build
42 %{__perl} Makefile.PL \
43         INSTALLDIRS=vendor
44 %{__make}
45
46 %{?with_tests:%{__make} test}
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50
51 %{__make} pure_install \
52         DESTDIR=$RPM_BUILD_ROOT
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %files
58 %defattr(644,root,root,755)
59 %doc Changes README
60 %attr(755,root,root) %{_bindir}/ppi2html
61 %{perl_vendorlib}/PPI/HTML.pm
62 %{perl_vendorlib}/PPI/HTML
63 %{_mandir}/man3/PPI::HTML.3pm*
This page took 1.514048 seconds and 3 git commands to generate.