]> git.pld-linux.org Git - packages/perl-Text-CSV-Encoded.git/blob - perl-Text-CSV-Encoded.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/perl-Text-CSV-Encoded.git] / perl-Text-CSV-Encoded.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %define pdir    Text
6 %define pnam    CSV-Encoded
7 Summary:        Text::CSV::Encoded - encoding aware Text::CSV
8 Summary(pl.UTF-8):      Text::CSV::Encoded - wersja Text::CSV obsługująca kodowania
9 Name:           perl-Text-CSV-Encoded
10 Version:        0.10
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/Text/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  9ed745eb7a416818b9c129eced8af93d
17 URL:            http://search.cpan.org/dist/Text-CSV-Encoded/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 %if %{with tests}
21 BuildRequires:  perl-Text-CSV >= 1.12
22 %endif
23 BuildArch:      noarch
24 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
25
26 %description
27 This module inherits Text::CSV and is aware of input/output encodings.
28
29 %description -l pl.UTF-8
30 Ten moduł dziedziczy po Text::CSV i obsługuje kodowania
31 wejścia/wyjścia.
32
33 %prep
34 %setup -q -n %{pdir}-%{pnam}-%{version}
35
36 %build
37 %{__perl} Makefile.PL \
38         INSTALLDIRS=vendor
39 %{__make}
40
41 %{?with_tests:%{__make} test}
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45
46 %{__make} pure_install \
47         DESTDIR=$RPM_BUILD_ROOT
48
49 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %files
53 %defattr(644,root,root,755)
54 %doc Changes
55 %{perl_vendorlib}/Text/CSV/Encoded.pm
56 %{perl_vendorlib}/Text/CSV/Encoded
57 %{_mandir}/man3/Text::CSV::Encoded*.3pm*
This page took 0.097124 seconds and 4 git commands to generate.