File: control

package info (click to toggle)
libtext-unidecode-perl 0.04-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 808 kB
  • ctags: 8
  • sloc: perl: 3,555; makefile: 51
file content (27 lines) | stat: -rw-r--r-- 1,218 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Source: libtext-unidecode-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 4.0.2)
Build-Depends-Indep: perl (>= 5.8.0-7)
Maintainer: Dominic Hargreaves <dom@earth.li>
Standards-Version: 3.6.1

Package: libtext-unidecode-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}, 
Description:  Text::Unidecode -- US-ASCII transliterations of Unicode text
 It often happens that you have non-Roman text data in Unicode, but
 you can't display it -- usually because you're trying to
 show it to a user via an application that doesn't support Unicode,
 or because the fonts you need aren't accessible.  You could
 represent the Unicode characters as "???????" or
 "\15BA\15A0\1610...", but that's nearly useless to the user who
 actually wants to read what the text says.
 .
 What Text::Unidecode provides is a function, unidecode(...) that
 takes Unicode data and tries to represent it in US-ASCII characters
 (i.e., the universally displayable characters between 0x00 and
 0x7F).  The representation is
 almost always an attempt at transliteration -- i.e., conveying,
 in Roman letters, the pronunciation expressed by the text in
 some other writing system.  (See the example in the synopsis.)