]> git.pld-linux.org Git - packages/perl-DateTime-Format-W3CDTF.git/blob - perl-DateTime-Format-W3CDTF.spec
b8eff81029c13db3a4eaf3f17ffc03c90fce8686
[packages/perl-DateTime-Format-W3CDTF.git] / perl-DateTime-Format-W3CDTF.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %include        /usr/lib/rpm/macros.perl
6 %define pdir    DateTime
7 %define pnam    Format-W3CDTF
8 Summary:        DateTime::Format::W3CDTF - Parse and format W3CDTF datetime strings
9 Summary(pl.UTF-8):      DateTime::Format::W3CDTF - analizowanie i formatowanie łańcuchów dat W3CDTF
10 Name:           perl-DateTime-Format-W3CDTF
11 Version:        0.06
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/DateTime/%{pdir}-%{pnam}-%{version}.tar.gz
17 # Source0-md5:  7eb2a90b78e7e2232eddbd6dd6758a23
18 URL:            http://search.cpan.org/dist/DateTime-Format-W3CDTF/
19 BuildRequires:  perl-devel >= 1:5.8.0
20 BuildRequires:  rpm-perlprov >= 4.1-13
21 %if %{with tests}
22 BuildRequires:  perl-DateTime
23 %endif
24 BuildArch:      noarch
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %description
28 This module understands the W3CDTF date/time format, an ISO 8601
29 profile, defined at <http://www.w3.org/TR/NOTE-datetime>. This format
30 as the native date format of RSS 1.0.
31
32 It can be used to parse these formats in order to create the
33 appropriate objects.
34
35 %description -l pl.UTF-8
36 Ten moduł rozumie format daty/czasu W3CDTF w profilu ISO 8601,
37 zdefiniowany w <http://www.w3.org/TR/NOTE-datetime>. Jest to natywny
38 format daty w RSS 1.0.
39
40 Moduł można wykorzystać do analizy tych formatów w celu utworzenia
41 odpowiednich obiektów.
42
43 %prep
44 %setup -q -n %{pdir}-%{pnam}-%{version}
45
46 %build
47 %{__perl} Makefile.PL \
48         INSTALLDIRS=vendor
49 %{__make}
50
51 %{?with_tests:%{__make} test}
52
53 %install
54 rm -rf $RPM_BUILD_ROOT
55
56 %{__make} install \
57         DESTDIR=$RPM_BUILD_ROOT
58
59 %clean
60 rm -rf $RPM_BUILD_ROOT
61
62 %files
63 %defattr(644,root,root,755)
64 %doc Changes README
65 %{perl_vendorlib}/DateTime/Format/W3CDTF.pm
66 %{_mandir}/man3/DateTime::Format::W3CDTF.3pm*
This page took 0.165444 seconds and 2 git commands to generate.