File: control

package info (click to toggle)
unac 1.8.0-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 2,464 kB
  • sloc: ansic: 3,862; sh: 2,794; makefile: 43; perl: 4
file content (46 lines) | stat: -rw-r--r-- 1,850 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Source: unac
Section: devel
Priority: optional
Maintainer: Debian QA Group <packages@qa.debian.org>
Build-Depends: debconf | debconf-2.0, debhelper-compat (= 13)
Standards-Version: 4.5.1
Rules-Requires-Root: no
Vcs-Browser: https://salsa.debian.org/debian/unac
Vcs-Git: https://salsa.debian.org/debian/unac.git

Package: libunac1
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: unac programming library - runtime version
 Unac is a C programmer's library that removes accents from a string.
 .
 This package contains only the shared library libunac.so.* and copyright
 information. It is only necessary for programs that use this library. If
 you plan on doing development with Unac, you will need the companion -dev
 package as well.

Package: libunac1-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libc6-dev, libunac1 (= ${binary:Version}), ${misc:Depends}
Description: C programmer's library that removes accents from a string
 Unac is a C programmer's library that removes accents from a string.
 For instance the string été will become ete.  It provides a command
 line interface that removes accents from a input flow or a string
 given in argument (unaccent command). In the library function and the
 command, the charset of the input is specified as an argument. The
 input is converted to UTF-16 using iconv(3), accents are stripped and
 the result is converted back to the original charset. The iconv --list
 command on GNU/Linux will show all charset supported.

Package: unaccent
Section: utils
Architecture: any
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Replace accented letters by their unaccented equivalent
 Read data from stdin, replace accented letters by their unaccented
 equivalent and write the result on stdout.