]> git.pld-linux.org Git - packages/perl-YAML-Tiny.git/blame - perl-YAML-Tiny.spec
- up to 1.50
[packages/perl-YAML-Tiny.git] / perl-YAML-Tiny.spec
CommitLineData
72f29e36 1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
5%include /usr/lib/rpm/macros.perl
6%define pdir YAML
7%define pnam Tiny
8Summary: YAML::Tiny - Read/Write YAML files with as little code as possible
636cc6b0 9#Summary(pl.UTF-8):
72f29e36 10Name: perl-YAML-Tiny
9b2c8094 11Version: 1.50
72f29e36 12Release: 1
13# same as perl
14License: GPL v1+ or Artistic
15Group: Development/Languages/Perl
4d8cdf3e 16Source0: http://www.cpan.org/modules/by-module/YAML/%{pdir}-%{pnam}-%{version}.tar.gz
9b2c8094 17# Source0-md5: 333727bed82ee70459bdc007a9a4fc2c
72f29e36 18URL: http://search.cpan.org/dist/YAML-Tiny/
19BuildRequires: perl-devel >= 1:5.8.0
20BuildRequires: rpm-perlprov >= 4.1-13
21BuildArch: noarch
22BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24%description
25YAML::Tiny is a perl class for reading and writing YAML-style files,
26written with as little code as possible, reducing load time and memory
27overhead.
28
29# %description -l pl.UTF-8
30# TODO
31
32%prep
33%setup -q -n %{pdir}-%{pnam}-%{version}
34
35%build
36%{__perl} Makefile.PL \
37 INSTALLDIRS=vendor
38%{__make}
39
40%{?with_tests:%{__make} test}
41
42%install
43rm -rf $RPM_BUILD_ROOT
44
45%{__make} pure_install \
46 DESTDIR=$RPM_BUILD_ROOT
47
48%clean
49rm -rf $RPM_BUILD_ROOT
50
51%files
52%defattr(644,root,root,755)
4d8cdf3e 53%doc Changes README
72f29e36 54%{perl_vendorlib}/YAML/*.pm
55%{_mandir}/man3/*
This page took 0.08443 seconds and 4 git commands to generate.