]> git.pld-linux.org Git - SPECS.git/blob - perl-Lingua-Stem-It.spec
SPECS updated Mon 29 Apr 22:05:02 CEST 2024
[SPECS.git] / perl-Lingua-Stem-It.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4 #
5 %define         pdir    Lingua
6 %define         pnam    Stem-It
7 Summary:        Lingua::Stem::It - Porter's stemming algorithm for Italian
8 Summary(pl.UTF-8):      Lingua::Stem::It - algorytm Portera określający rdzenie słów dla języka włoskiego
9 Name:           perl-Lingua-Stem-It
10 Version:        0.02
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/Lingua/%{pdir}-%{pnam}-%{version}.tar.gz
16 # Source0-md5:  611ec6d600f1280aa6c510c83b7bc4a2
17 URL:            http://search.cpan.org/dist/Lingua-Stem-It/
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 BuildArch:      noarch
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 This module applies the Porter Stemming Algorithm to its parameters,
25 returning the stemmed words.
26
27 The algorithm is implemented exactly as described in:
28 http://snowball.tartarus.org/italian/stemmer.html .
29
30 %description -l pl.UTF-8
31 Ten moduł stosuje do swoich parametrów algorytm Portera określający
32 rdzenie słów, zwracając te rdzenie.
33
34 Zaimplementowany został algorytm opisany na stronie:
35 http://snowball.tartarus.org/italian/stemmer.html .
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 %{perl_vendorlib}/Lingua/Stem/*.pm
59 %{_mandir}/man3/*
This page took 0.952058 seconds and 3 git commands to generate.