]> git.pld-linux.org Git - SPECS.git/blob - perl-XML-Filter-SAXT.spec
SPECS updated Mon 29 Apr 22:05:02 CEST 2024
[SPECS.git] / perl-XML-Filter-SAXT.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4
5 %define         pdir    XML
6 %define         pnam    Filter-SAXT
7 Summary:        XML::Filter::SAXT - replicates SAX events to several SAX event handlers
8 Summary(pl.UTF-8):      XML::Filter::SAXT - powielanie zdarzeń SAX dla wielu funkcji obsługi zdarzeń SAX
9 Name:           perl-XML-Filter-SAXT
10 Version:        0.01
11 Release:        2
12 # same as perl
13 License:        GPL v1+ or Artistic
14 Group:          Development/Languages/Perl
15 Source0:        http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  da65cbe1938bff4c8975014c80063e05
17 URL:            http://search.cpan.org/dist/XML-Filter-SAXT/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 Obsoletes:      perl-libxml-enno
21 BuildArch:      noarch
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 SAXT is like the Unix 'tee' command in that it multiplexes the input
26 stream to several output streams. In this case, the input stream is a
27 PerlSAX event producer (like XML::Parser::PerlSAX) and the output
28 streams are PerlSAX handlers or filters.
29
30 %description -l pl.UTF-8
31 SAXT jest modułem podobnym do uniksowego polecenia 'tee' pod tym
32 względem, że powiela strumień wejściowy na kilka strumieni
33 wyjściowych. W tym przypadku strumień wyjściowy to moduł tworzący
34 zdarzenia PerlSAX (jak XML::Parser::PerlSAX), a strumienie wyjściowe
35 są funkcjami obsługi lub filtrami PerlSAX.
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}/XML/Filter/SAXT.pm
60 %{_mandir}/man3/*
This page took 0.623387 seconds and 3 git commands to generate.