diff --git a/README.md b/README.md index 26880cb..146a07b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Unicode-Map8 +The Unicode::Map8 class implement efficient mapping tables between 8-bit character sets and 16 bit character sets like Unicode. The tables are efficient both in terms of space allocated and translation speed. The 16-bit strings is assumed to use network byte order + diff --git a/perl-Unicode-Map8.spec b/perl-Unicode-Map8.spec new file mode 100644 index 0000000..86477e5 --- /dev/null +++ b/perl-Unicode-Map8.spec @@ -0,0 +1,69 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Unicode-Map8 +Version: 0.13 +Release: 2mamba +Summary: Unicode::Map8 - Mapping table between 8-bit chars and Unicode +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Unicode-Map8-%{version}.tar.gz +License: perl +Requires: perl >= %perl_major_ver +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: perl-devel +BuildRequires: perl-Unicode-String +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +The Unicode::Map8 class implement efficient mapping tables between 8-bit character sets and 16 bit character sets like Unicode. The tables are efficient both in terms of space allocated and translation speed. The 16-bit strings is assumed to use network byte order + +%prep +%setup -q -n Unicode-Map8-%{version} + +%build +perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor +%make +%ifnarch x86_64 +%make test +%endif + +%install +[ "%{buildroot}" != / ] && rm -rf %{buildroot} +%makeinstall_perl +packlist=`find %{buildroot} -name .packlist` +[ -z "$packlist" ] && exit 1 || cat $packlist | \ + sed "s,%buildroot,,g;s,.*/man/.*,&.gz,g" | \ + sort -u > .packlist && rm $packlist + +strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'` +for dir in `find %{buildroot} -type d | grep $strid`; do + echo "%dir ${dir#%buildroot}" >> .packlist +done + +%clean +[ "%{buildroot}" != / ] && rm -rf %{buildroot} +rm -f .packlist + +%files -f .packlist +%defattr(-,root,root) + +%changelog +* Mon Nov 12 2012 Silvan Calarco 0.13-2mamba +- perl 5.16 mass rebuild + +* Fri Jan 22 2010 Automatic Build System 0.13-1mamba +- automatic update by autodist + +* Thu Nov 06 2008 Silvan Calarco 0.12-3mamba +- automatic rebuild by autodist + +* Sat Jul 26 2008 Silvan Calarco 0.12-2mamba +- specfile updated + +* Thu Dec 29 2005 Alessandro Ramazzina 0.12-1qilnx +- package created by autospec