]> git.pld-linux.org Git - packages/perl-Locale-Maketext-Fuzzy.git/blame_incremental - perl-Locale-Maketext-Fuzzy.spec
- up to 0.10
[packages/perl-Locale-Maketext-Fuzzy.git] / perl-Locale-Maketext-Fuzzy.spec
... / ...
CommitLineData
1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
5%include /usr/lib/rpm/macros.perl
6%define pdir Locale
7%define pnam Maketext-Fuzzy
8Summary: Locale::Maketext::Fuzzy - Maketext from already interpolated strings
9Summary(pl.UTF-8): Locale::Maketext::Fuzzy - Maketext z już przybliżonych łańcuchów
10Name: perl-Locale-Maketext-Fuzzy
11Version: 0.10
12Release: 1
13# same as perl
14License: GPL v1+ or Artistic
15Group: Development/Languages/Perl
16Source0: http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
17# Source0-md5: ff5621abe3b6a632bdf91932b4b69513
18BuildRequires: perl-devel >= 1:5.8.0
19%if %{with tests}
20BuildRequires: perl-Locale-Maketext
21BuildRequires: perl-Test-Simple
22%endif
23BuildRequires: rpm-perlprov >= 4.1-13
24BuildArch: noarch
25BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27%description
28This module is a subclass of Locale::Maketext, with additional support
29for localizing messages that already contains interpolated variables.
30This is most useful when the messages are returned by external modules
31- for example, to match "dir: command not found" against "[_1]: command
32not found".
33
34%description -l pl.UTF-8
35Ten moduł jest podklasą Locale::Maketext, z dodatkową obsługą
36lokalizowanych komunikatów, które już zawierają przybliżone wartości.
37Jest to najbardziej przydatne kiedy komunikaty są zwracane przez
38zewnętrzne moduły - na przykład, aby dopasować "dir: command not
39found" do "[_1]: command not found".
40
41%prep
42%setup -q -n %{pdir}-%{pnam}-%{version}
43
44%build
45%{__perl} Makefile.PL \
46 INSTALLDIRS=vendor
47%{__make}
48
49%{?with_tests:%{__make} test}
50
51%install
52rm -rf $RPM_BUILD_ROOT
53
54%{__make} install \
55 DESTDIR=$RPM_BUILD_ROOT
56
57%clean
58rm -rf $RPM_BUILD_ROOT
59
60%files
61%defattr(644,root,root,755)
62%{perl_vendorlib}/Locale/Maketext/*.pm
63%{_mandir}/man3/*
This page took 0.103169 seconds and 4 git commands to generate.