]> git.pld-linux.org Git - packages/perl-Text-Unaccent.git/blob - perl-Text-Unaccent.spec
- new (required by DBIx::TextIndex), doesn't work...?
[packages/perl-Text-Unaccent.git] / perl-Text-Unaccent.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    Text
7 %define pnam    Unaccent
8 Summary:        Text::Unaccent - Remove accents from a string
9 #Summary(pl):   
10 Name:           perl-Text-Unaccent
11 Version:        1.01
12 Release:        1
13 License:        GPL v2+
14 Group:          Development/Languages/Perl
15 Source0:        http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
16 BuildRequires:  perl-devel >= 1:5.6
17 BuildRequires:  rpm-perlprov >= 4.1-13
18 BuildArch:      noarch
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 Text::Unaccent is a module that provides functions to remove accents
23 from a string.  For instance the string été will become ete.  The
24 charset of the input string is specified as an argument. The input is
25 converted to UTF-16 using iconv(3), accents are stripped and the
26 result is converted back to the original charset. The iconv --list
27 command on GNU/Linux will show all charset supported.
28
29 Text-Unaccent-1.01 has the same unac.[ch] files than unac-1.1.0
30
31 # %description -l pl
32 # TODO
33
34 %prep
35 %setup -q -n %{pdir}-%{pnam}-%{version}
36
37 %build
38 %{__perl} Makefile.PL \
39         LIBS= \
40         INSTALLDIRS=vendor
41 %{__make}
42
43 %{?with_tests:%{__make} test}
44
45 %install
46 rm -rf $RPM_BUILD_ROOT
47
48 %{__make} install \
49         DESTDIR=$RPM_BUILD_ROOT
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files
55 %defattr(644,root,root,755)
56 %doc ChangeLog README
57 %{perl_vendorarch}/%{pdir}/*.pm
58 %dir %{perl_vendorarch}/auto/%{pdir}/%{pnam}
59 %{perl_vendorarch}/auto/%{pdir}/%{pnam}/*.bs
60 %attr(755,root,root) %{perl_vendorarch}/auto/%{pdir}/%{pnam}/*.so
61 %{_mandir}/man3/*
This page took 0.093909 seconds and 4 git commands to generate.