source: projects/specs/trunk/p/perl-Text-Unidecode/perl-Text-Unidecode-vl.spec @ 521

Revision 521, 2.1 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary:        US-ASCII transliterations of Unicode text
2Name:           perl-Text-Unidecode
3Version:        0.04
4Release:        1%{?_dist_release}
5
6Group:          Development/Libraries
7License:        GPL+ or Artistic
8URL:            http://search.cpan.org/dist/Text-Unidecode/
9Source0:        http://www.cpan.org/modules/by-module/Text/Text-Unidecode-%{version}.tar.gz
10BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
11
12BuildArch:      noarch
13BuildRequires:  perl(ExtUtils::MakeMaker)
14
15%description
16
17Text::Unidecode provides a function, `unidecode(...)' that
18takes Unicode data and tries to represent it in US-ASCII
19characters (i.e., the universally displayable characters between
200x00 and 0x7F). The representation is almost always an attempt at
21*transliteration* -- i.e., conveying, in Roman letters, the
22pronunciation expressed by the text in some other writing
23system.
24
25
26%prep
27%setup -q -n Text-Unidecode-%{version}
28
29
30%build
31%{__perl} Makefile.PL INSTALLDIRS=vendor
32make %{?_smp_mflags}
33
34
35%install
36rm -rf $RPM_BUILD_ROOT
37make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
38find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
39find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
40chmod -R u+w $RPM_BUILD_ROOT/*
41
42
43%check
44make test
45
46
47%clean
48rm -rf $RPM_BUILD_ROOT
49
50
51%files
52%defattr(-,root,root,-)
53%doc README TODO.txt ChangeLog
54%{perl_vendorlib}/Text/
55%{_mandir}/man3/*.3*
56
57
58%changelog
59* Tue Aug 19 2008 Shu KONNO <owa@bg.wakwak.com> 0.0.4-1vl5
60- applied new versioning policy
61
62* Thu Nov 01 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.4-0vl1
63- initial build for Vine Linux
64
65* Wed Oct 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 0.04-4.1
66- correct license tag
67- add BR: perl(ExtUtils::MakeMaker)
68
69* Tue Aug 29 2006 Patrice Dumas <pertusus at free.fr> - 0.04-4
70- rebuild for FC6
71
72* Mon Jun 26 2006 Patrice Dumas <pertusus at free.fr> - 0.04-3
73- rebuild for perl-5.8.8
74
75* Fri Feb 17 2006 Patrice Dumas <pertusus at free.fr> - 0.04-2
76- rebuild for fc5
77
78* Sun Jan 29 2006 Patrice Dumas <pertusus at free.fr> - 0.04-1
79- fedora extras submission
Note: See TracBrowser for help on using the repository browser.